1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00

Merge pull request #193 from mplanchard/release-tidying

Release Tidying
This commit is contained in:
Matthew Planchard 2017-11-29 19:33:59 -06:00 committed by GitHub
commit 861aa73534
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 6 deletions

@ -4,9 +4,6 @@ Changelog
1.2.1 (2017-11-29)
------------------
- Matrix-based authorization, allowing users to have multiple actions
(thanks @khornberg, #132)
- FIX propagation of certain ``pypiserver`` settings via a ``paste.ini`` config
file (thanks @luismsgomes, #156)

@ -10,7 +10,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install
|pypi-ver| |travis-status| |dependencies| |downloads-count| |python-ver| \
|proj-license|
:Version: 1.2.1
:Version: 1.2.2dev0
:Date: 2017-11-29 11:49:30
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.python.org/pypi/pypiserver

@ -1,9 +1,9 @@
import re as _re
import sys
version = __version__ = "1.2.1"
version = __version__ = "1.2.2dev0"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2017-11-29 18:47:30"
__updated__ = "2017-11-29 19:23:21"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."