Bump v1.1.9 <-- 1.1.9.dev4.

+ Update CHANGES and rel-dates.
This commit is contained in:
ankostis on tokoti 2015-12-22 00:05:03 +02:00
parent ac20f9d36c
commit c1fe0f9202
3 changed files with 18 additions and 16 deletions

View File

@ -1,7 +1,7 @@
Changelog
=========
1.1.9 (2015-12-XX)
1.1.9 (2015-12-21)
------------------
"Ssss-elections" bug-fix & maintenance release.
@ -15,19 +15,20 @@ Changelog
- Replace all sys.module mechanics with relative imports.
- Fix gevent monkeypatching (#49).
- Simplify definition of config-options on startup.
- TODO: 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
authentication methods (non HtPasswdFile-based one) to be defined by
API-clients (thanks @Tythos).
- #53: Like PyPI, HREF-links now contain package's md5-hashes in their fragment.
Add `--hash_algo` cmd-line option to turn-off or specify other *hashlib*
message-digest algorithms (e.g. `sha256` is a safer choice, set it to `off`
to avoid any performance penalty if hosting a lot of packages).
- #91: Attempt to fix register http failures (thanks to @ Tythos and @petri).
- #97: Add `--auther` non cmd-line startup-option to allow for alternative
authentication methods (non HtPasswdFile-based one) to be defined by
API-clients (thanks @Tythos).
- #91: Attempt to fix register http failures (thanks to @Tythos and @petri).
- Test actual clients (ie `pip`, `Twine`, `setuptools`).
- Test spurious `setuptools` failures.
@ -37,6 +38,7 @@ Changelog
- #96: Fix program's requirement (i.e. add passlib as extra-requirement).
provide requirements files also for developers.
- logging: Send also bottle `_stderr` to logger; fix logger names.
- #95: Add missing loop-terminators in bottle-templates (thanks to @bmflynn).

View File

@ -6,13 +6,13 @@ pypiserver - minimal PyPI server for use with pip/easy_install
|pypi-ver| |travis-status| |dependencies| |downloads-count| |python-ver| \
|proj-license|
:Version: 1.1.9-dev.4
:Date: 2015-03-8
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.python.org/pypi/pypiserver
:Travis: https://travis-ci.org/pypiserver/pypiserver
:Maintainer: Kostis Anagnostopoulos <ankostis@gmail.com>
:License: zlib/libpng + MIT
:Version: 1.1.9
:Date: 2015-12-21
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.python.org/pypi/pypiserver
:Travis: https://travis-ci.org/pypiserver/pypiserver
:Maintainer: Kostis Anagnostopoulos <ankostis@gmail.com>
:License: zlib/libpng + MIT
.. contents:: Table of Contents
:backlinks: top

View File

@ -1,8 +1,8 @@
import re as _re
version = __version__ = "1.1.9-dev.4"
version = __version__ = "1.1.9"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2015-12-20"
__updated__ = "2015-12-21"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."