diff --git a/CHANGES.rst b/CHANGES.rst index d5783d7..102d549 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,21 @@ Changelog ========= +1.1.9 (2015-09-XX) +------------------ +"Ssss-elections" bug-fix & maintenance release. + +- Upgrade bottle 1.11.6-->1.13-dev. + - Fixes `MAX_PARAM` limiting dependencies(#82) +- Rework main startup and standalone: + - New standalone generation based on ZIPed wheel archive. + - Replace all sys.module mechanics with relative imports. + - Fix gevent monkeypatching (#49). +- Fix program's requirement (i.e. add passlib as extra-requirement): + - provide requirements files also for developers. +- Test actual clients (ie `pip`, `Twine`, `setuptools`). + - Test spurious `setuptools` failures (#91). + 1.1.8 (2015-09-15) ------------------ "Finikounda" release. diff --git a/README.rst b/README.rst index beaad51..9e61cd7 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install |proj-license| :Maintainer: Kostis Anagnostopoulos -:Version: 1.1.9-dev.1 +:Version: 1.1.9-dev.2 :Date: 2015-03-8 :Source: https://github.com/pypiserver/pypiserver :PyPI: https://pypi.python.org/pypi/pypiserver diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index a313be0..217acb5 100644 --- a/pypiserver/__init__.py +++ b/pypiserver/__init__.py @@ -1,12 +1,13 @@ import re as _re -version = __version__ = "1.1.9-dev.1" +version = __version__ = "1.1.9-dev.2" __version_info__ = tuple(_re.split('[.-]', __version__)) -__updated__ = "2015-09-19 02:07:51" +__updated__ = "2015-09-21" __title__ = "pypiserver" __summary__ = "A minimal PyPI server for use with pip/easy_install." __uri__ = "https://github.com/pypiserver/pypiserver" + def app(root=None, redirect_to_fallback=True, fallback_url=None,