Bump version: 0.9.0 → 0.9.1rc1

This commit is contained in:
Alex Grintsvayg 2017-03-15 12:34:32 -04:00
parent 593e8a94ad
commit 12bc804622
2 changed files with 4 additions and 4 deletions

View file

@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.9.1rc1
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.9.0"
__version__ = "0.9.1rc1"
version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler())