Bump version: 0.9.0rc16 → 0.9.0rc17

This commit is contained in:
Alex Grintsvayg 2017-03-10 16:30:28 -05:00
parent 7291efac83
commit 2303f88bd4
3 changed files with 9 additions and 6 deletions

View file

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

View file

@ -18,14 +18,17 @@ at anytime.
*
*
### Fixed
*
*
*
## [0.9.0rc17] - 2017-03-10
### Fixed
* Added string comparison to ClaimOutpoint (needed to look things up by outpoint)
* Remove unused API commands from daemon
* Fix file filter `outpoint`
* Made dictionary key names in API commmand outputs to be more consistent
*
*
*
## [0.9.0rc15] - 2017-03-09
### Added

View file

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