Bump version: 0.9.1rc1 → 0.9.1rc2

This commit is contained in:
Alex Grintsvayg 2017-03-15 19:59:59 -04:00
parent 9d7dcf4af7
commit 8201fc186d
3 changed files with 10 additions and 4 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.9.1rc1 current_version = 0.9.1rc2
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

@ -9,12 +9,12 @@ at anytime.
## [Unreleased] ## [Unreleased]
### Added ### Added
* Added `--version` flag *
* *
* *
### Changed ### Changed
* Removed `simplejson` dependency in favor of bulitin `json` *
* *
* *
@ -23,6 +23,12 @@ at anytime.
* *
* *
## [0.9.1rc2] - 2017-03-15
### Added
* Added `--version` flag
### Changed
* Removed `simplejson` dependency in favor of bulitin `json`
## [0.9.0rc17] - 2017-03-10 ## [0.9.0rc17] - 2017-03-10
### Fixed ### Fixed
* Added string comparison to ClaimOutpoint (needed to look things up by outpoint) * Added string comparison to ClaimOutpoint (needed to look things up by outpoint)

View file

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