Bump version: 0.10.3production2 → 0.10.3production3

This commit is contained in:
Jack Robison 2017-05-30 11:25:19 -04:00
parent 9c2ec3a8eb
commit ffe04950bc
3 changed files with 15 additions and 5 deletions

View file

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

View file

@ -13,14 +13,12 @@ at anytime.
*
### Changed
* Update `publish` to use {'currency': ..., 'address': ..., 'amount'} format for fee parameter, previously used old {currency: {'address': ..., 'amount': ...}} format
*
*
### Fixed
*
*
* Allow claim_show to be used without specifying name
* Fix licenseUrl field in `publish`
### Deprecated
*
@ -30,6 +28,18 @@ at anytime.
*
*
## [0.10.3production3] - 2017-05-30
### Changed
* Update `publish` to use {'currency': ..., 'address': ..., 'amount'} format for fee parameter, previously used old {currency: {'address': ..., 'amount': ...}} format
### Fixed
* Allow claim_show to be used without specifying name
* Fix licenseUrl field in `publish`
## [0.10.3production2] - 2017-05-30
### Fixed

View file

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