forked from github.com/pypiserver
bump ver 1.1.9-dev.1-->dev.2
+ Add CHANGES in this version so far.
This commit is contained in:
parent
eeb8b05fec
commit
977ab69089
15
CHANGES.rst
15
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.
|
||||
|
@ -7,7 +7,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install
|
||||
|proj-license|
|
||||
|
||||
:Maintainer: Kostis Anagnostopoulos <ankostis@gmail.com>
|
||||
: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
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user