Bump version: 0.10.3 → 0.10.3production2

This commit is contained in:
Jack Robison 2017-05-30 11:02:37 -04:00
parent 89ada85f0f
commit 5d4e4a8753
3 changed files with 9 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.10.3 current_version = 0.10.3production2
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))? parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?

View file

@ -19,7 +19,6 @@ at anytime.
### Fixed ### Fixed
* *
* *
* Allow claim_show to be used without specifying name
### Deprecated ### Deprecated
* *
@ -29,6 +28,13 @@ at anytime.
* *
* *
## [0.10.3production2] - 2017-05-30
### Fixed
* Allow claim_show to be used without specifying name
## [0.10.3] - 2017-05-23 ## [0.10.3] - 2017-05-23
### Added ### Added

View file

@ -1,6 +1,6 @@
import logging import logging
__version__ = "0.10.3" __version__ = "0.10.3production2"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler()) logging.getLogger(__name__).addHandler(logging.NullHandler())