From e85ed3f5e6bb17f1a646380b325571a8fe6ec6a1 Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Tue, 17 Jul 2018 20:45:17 -0500 Subject: [PATCH 1/3] Quick doc update --- README.rst | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 0cba688..efc053c 100644 --- a/README.rst +++ b/README.rst @@ -335,11 +335,14 @@ use it like this:: Using the Docker Image ====================== -Starting with version 1.2.3, official Docker images are built for each +Starting with version 1.2.3, official Docker images will be built for each push to master, each dev, alpha, or beta release, and each final release. The most recent full release will always be available under the tag ``latest``, and the current master branch will always be available under the tag -``master``. +``unstable``. + +You can always check to see what tags are currently available at our +`Docker Repo`_. To run the most recent release of ``pypiserver`` with Docker, simply:: @@ -371,7 +374,10 @@ You can also specify ``pypiserver`` to run as a Docker service using a composefile. An example composefile is `provided `_. -Alternative Installation methods +.. _`docker repo`: https://hub.docker.com/r/pypiserver/pypiserver/tags/ + + +Alternative Installation Methods ================================ When trying the methods below, first use the following command to check whether previous versions of *pypiserver* already exist, and (optionally) uninstall them:: From ff4b049f97fac576bc1278df1db63e598e5bf2b5 Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Sat, 4 Aug 2018 12:31:31 -0500 Subject: [PATCH 2/3] Prep for 1.2.3 --- CHANGES.rst | 2 +- README.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 08373d7..2dc10da 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog ========= -Next Release +1.2.3 (2018-08-04) ------------------ - MAINT: Remove broken downloads badge (thanks @hugovk, #209) diff --git a/README.rst b/README.rst index efc053c..ee9c864 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.2 -:Date: 2018-06-12 11:49:30 +:Version: 1.2.3 +:Date: 2018-08-04 11:49:30 :Source: https://github.com/pypiserver/pypiserver :PyPI: https://pypi.org/project/pypiserver/ :Travis: https://travis-ci.org/pypiserver/pypiserver From c86de256fb37ef552abac5c4f3d3cec7a5cb4b3c Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Sat, 4 Aug 2018 12:31:44 -0500 Subject: [PATCH 3/3] chore(ver): bump 1.2.3-->1.2.3 --- pypiserver/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index e924cb3..1e05e9d 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.2" +version = __version__ = "1.2.3" __version_info__ = tuple(_re.split('[.-]', __version__)) -__updated__ = "2018-06-12 20:15:10" +__updated__ = "2018-08-04 12:31:43" __title__ = "pypiserver" __summary__ = "A minimal PyPI server for use with pip/easy_install."