chore(ver): bump 1.2.1.dev0-->1.2.1rc0

This commit is contained in:
Matthew Planchard 2017-11-14 11:49:14 -06:00
parent 238eefa027
commit ea92f16bf3
3 changed files with 4 additions and 4 deletions

View File

@ -10,8 +10,8 @@ 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.dev0
:Date: 2016-XX-XX
:Version: 1.2.1rc0
:Date: 2017-11-14 11:49:30
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.python.org/pypi/pypiserver
:Travis: https://travis-ci.org/pypiserver/pypiserver

0
bin/bumpver.py Normal file → Executable file
View File

View File

@ -1,9 +1,9 @@
import re as _re
import sys
version = __version__ = "1.2.1.dev0"
version = __version__ = "1.2.1rc0"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2016-XX-XX"
__updated__ = "2017-11-14 11:49:30"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."