update README for 1.0.0 release, up version to 1.0.0

This commit is contained in:
Ralf Schmitt 2012-10-15 22:39:30 +02:00
parent 1c0ebe2040
commit a1fc09d14c
2 changed files with 18 additions and 5 deletions

@ -6,8 +6,8 @@ pypiserver - minimal PyPI server for use with pip/easy_install
:Authors: Ralf Schmitt <ralf@systemexit.de>
:Version: 0.6.1
:Date: 2012-08-07
:Version: 1.0.0
:Date: 2012-10-15
:Download: http://pypi.python.org/pypi/pypiserver#downloads
:Code: https://github.com/schmir/pypiserver
@ -401,6 +401,19 @@ EggBasket (http://pypi.python.org/pypi/EggBasket)
Changelog
=========
1.0.0 (2012-10-15)
------------------
- add passlib and waitress to pypi-server-standalone
- upgrade bottle to 0.11.2
- Update scripts/opensuse/pypiserver.init
- Refuse to re upload existing file
- Add 'console_scripts' section to 'entry_points', so
'pypi-server.exe' will be created on Windows.
- paste_app_factory now use the the password_file option to create the
app. Without this the package upload was not working.
- Add --fallback-url argument to pypi-server script to make it
configurable.
0.6.1 (2012-08-07)
------------------
- make 'python setup.py register' work

@ -1,5 +1,5 @@
__version_info__ = (0, 6, 2, 'dev')
version = __version__ = "0.6.2dev"
__version_info__ = (1, 0, 0)
version = __version__ = "1.0.0"
def app(root=None,
@ -18,7 +18,7 @@ def app(root=None,
root = os.path.expanduser("~/packages")
if fallback_url is None:
fallback_url="http://pypi.python.org/simple"
fallback_url = "http://pypi.python.org/simple"
os.listdir(root)
_app.configure(root=root, redirect_to_fallback=redirect_to_fallback, fallback_url=fallback_url,