Bump version: 0.9.0rc10 → 0.9.0rc11

This commit is contained in:
Alex Liebowitz 2017-02-27 17:49:07 -05:00
parent f9642018ae
commit e8afad7af8
3 changed files with 8 additions and 4 deletions

View file

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

View file

@ -19,10 +19,14 @@ at anytime.
*
### Fixed
* Added timeout to ClientProtocol
* Add check for when local height of wallet is less than zero
*
*
*
## [0.9.0rc11] - 2017-02-27
### Fixed
* Added timeout to ClientProtocol
* Add check for when local height of wallet is less than zero
## [0.9.0rc9] - 2017-02-22
### Changed

View file

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