forked from github.com/pypiserver
Bump v1.1.9 <-- 1.1.9.dev4.
+ Update CHANGES and rel-dates.
This commit is contained in:
parent
ac20f9d36c
commit
c1fe0f9202
14
CHANGES.rst
14
CHANGES.rst
@ -1,7 +1,7 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
1.1.9 (2015-12-XX)
|
1.1.9 (2015-12-21)
|
||||||
------------------
|
------------------
|
||||||
"Ssss-elections" bug-fix & maintenance release.
|
"Ssss-elections" bug-fix & maintenance release.
|
||||||
|
|
||||||
@ -15,18 +15,19 @@ Changelog
|
|||||||
- Replace all sys.module mechanics with relative imports.
|
- Replace all sys.module mechanics with relative imports.
|
||||||
- Fix gevent monkeypatching (#49).
|
- Fix gevent monkeypatching (#49).
|
||||||
- Simplify definition of config-options on startup.
|
- 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.
|
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.
|
- #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*
|
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`
|
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).
|
to avoid any performance penalty if hosting a lot of packages).
|
||||||
|
|
||||||
|
- #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).
|
- #91: Attempt to fix register http failures (thanks to @Tythos and @petri).
|
||||||
|
|
||||||
- Test actual clients (ie `pip`, `Twine`, `setuptools`).
|
- Test actual clients (ie `pip`, `Twine`, `setuptools`).
|
||||||
@ -37,6 +38,7 @@ Changelog
|
|||||||
|
|
||||||
- #96: Fix program's requirement (i.e. add passlib as extra-requirement).
|
- #96: Fix program's requirement (i.e. add passlib as extra-requirement).
|
||||||
provide requirements files also for developers.
|
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).
|
- #95: Add missing loop-terminators in bottle-templates (thanks to @bmflynn).
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ pypiserver - minimal PyPI server for use with pip/easy_install
|
|||||||
|pypi-ver| |travis-status| |dependencies| |downloads-count| |python-ver| \
|
|pypi-ver| |travis-status| |dependencies| |downloads-count| |python-ver| \
|
||||||
|proj-license|
|
|proj-license|
|
||||||
|
|
||||||
:Version: 1.1.9-dev.4
|
:Version: 1.1.9
|
||||||
:Date: 2015-03-8
|
:Date: 2015-12-21
|
||||||
:Source: https://github.com/pypiserver/pypiserver
|
:Source: https://github.com/pypiserver/pypiserver
|
||||||
:PyPI: https://pypi.python.org/pypi/pypiserver
|
:PyPI: https://pypi.python.org/pypi/pypiserver
|
||||||
:Travis: https://travis-ci.org/pypiserver/pypiserver
|
:Travis: https://travis-ci.org/pypiserver/pypiserver
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import re as _re
|
import re as _re
|
||||||
|
|
||||||
version = __version__ = "1.1.9-dev.4"
|
version = __version__ = "1.1.9"
|
||||||
__version_info__ = tuple(_re.split('[.-]', __version__))
|
__version_info__ = tuple(_re.split('[.-]', __version__))
|
||||||
__updated__ = "2015-12-20"
|
__updated__ = "2015-12-21"
|
||||||
|
|
||||||
__title__ = "pypiserver"
|
__title__ = "pypiserver"
|
||||||
__summary__ = "A minimal PyPI server for use with pip/easy_install."
|
__summary__ = "A minimal PyPI server for use with pip/easy_install."
|
||||||
|
Loading…
Reference in New Issue
Block a user