Skip to content

Commit

Permalink
Bump v1.1.9 <-- 1.1.9.dev4.
Browse files Browse the repository at this point in the history
+ Update CHANGES and rel-dates.
  • Loading branch information
ankostis committed Dec 21, 2015
1 parent ac20f9d commit c1fe0f9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
16 changes: 9 additions & 7 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

1.1.9 (2015-12-XX)
1.1.9 (2015-12-21)
------------------
"Ssss-elections" bug-fix & maintenance release.

Expand All @@ -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.
Expand All @@ -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).


Expand Down
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pypiserver/__init__.py
Original file line number Diff line number Diff line change
@@ -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."
Expand Down

0 comments on commit c1fe0f9

Please sign in to comment.