chore(ver): bump 1.2.4-->1.2.5.dev0

This commit is contained in:
Matthew Planchard 2018-08-06 17:51:23 -05:00
parent 4ed7b59925
commit 34f2b1e109
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install
==============================================================================
|pypi-ver| |travis-status| |dependencies| |python-ver| |proj-license|
:Version: 1.2.4
:Version: 1.2.5.dev0
:Date: 2018-08-06 11:49:30
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.org/project/pypiserver/
@ -335,7 +335,7 @@ use it like this::
Using the Docker Image
======================
Starting with version 1.2.4, official Docker images will be built for each
Starting with version 1.2.5.dev0, 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

View File

@ -2,9 +2,9 @@ import os
import re as _re
import sys
version = __version__ = "1.2.4"
version = __version__ = "1.2.5.dev0"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2018-08-06 17:25:45"
__updated__ = "2018-08-06 17:51:22"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."