Bump v1.1.9.dev4 <-- dev3.

This commit is contained in:
ankostis on tokoti 2015-12-21 03:09:43 +02:00
parent 011c79b8bf
commit 5c1be3928a
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ Changelog
- Replace all sys.module mechanics with relative imports.
- Fix gevent monkeypatching (#49).
- Simplify definition of config-options on startup.
- Move startup-options validations out of `main()` and into `pypiserver.core`
- TODO: Move startup-options validations out of `main()` and into `pypiserver.core`
package, to validate also start-up from API-clients.
- #97: Add `--auther` non cmd-line startup-option to allow for alternative

View File

@ -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.3
:Version: 1.1.9-dev.4
:Date: 2015-03-8
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.python.org/pypi/pypiserver

View File

@ -1,6 +1,6 @@
import re as _re
version = __version__ = "1.1.9-dev.3"
version = __version__ = "1.1.9-dev.4"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2015-12-20"