From 33b4e210176ba1513987c8d2edaf6296aa72aa4d Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Thu, 31 Jan 2019 18:43:27 -0600 Subject: [PATCH] chore(ver): bump 1.2.6-->1.2.7 --- CHANGES.rst | 9 +++++++++ README.rst | 4 ++-- pypiserver/__init__.py | 4 ++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 760c71a..9d42385 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ------------------ diff --git a/README.rst b/README.rst index 897d5bd..321afdd 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index 18fd851..73e437d 100644 --- a/pypiserver/__init__.py +++ b/pypiserver/__init__.py @@ -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."