fixing version number before 0.14 release

This commit is contained in:
Alex Grintsvayg 2017-07-05 15:58:40 -04:00
parent 03db114ba8
commit da511700a7
2 changed files with 4 additions and 4 deletions

View file

@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.14.2rc2
current_version = 0.14.0rc99
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}{release}{candidate}
{major}.{minor}.{patch}
@ -12,7 +12,7 @@ first_value = 1
[bumpversion:part:release]
optional_value = production
values =
values =
rc
production

View file

@ -1,6 +1,6 @@
import logging
__version__ = "0.14.2rc2"
__version__ = "0.14.0rc99"
version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler())