chore(ver): bump 1.2.6-->1.2.7

This commit is contained in:
Matthew Planchard 2019-01-31 18:43:27 -06:00
parent b21cdb1e90
commit 33b4e21017
No known key found for this signature in database
GPG Key ID: 4ABC11DF33394F00
3 changed files with 13 additions and 4 deletions

View File

@ -1,6 +1,15 @@
Changelog
=========
1.2.7 (2019-01-31)
------------------
- FIX: bcrypt is now *properly* installed in the Docker image, and our
automated tests now do a better job of making sure authentication and
uploads work as expected in Docker (thanks @ronneke1996, #239; also
thanks @kellycampbell, #235 for an alternate approach that wound up
being unused but is still appreciated!)
1.2.6 (2019-01-26)
------------------

View File

@ -9,8 +9,8 @@ pypiserver - minimal PyPI server for use with pip/easy_install
==============================================================================
|pypi-ver| |travis-status| |dependencies| |python-ver| |proj-license|
:Version: 1.2.6
:Date: 2019-01-26
:Version: 1.2.7
:Date: 2019-01-31
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.org/project/pypiserver/
:Travis: https://travis-ci.org/pypiserver/pypiserver

View File

@ -2,9 +2,9 @@ import os
import re as _re
import sys
version = __version__ = "1.2.6"
version = __version__ = "1.2.7"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2019-01-26 15:57:50"
__updated__ = "2019-01-31 18:43:27"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."