Bump version: 0.9.1 → 0.9.2rc1

This commit is contained in:
Alex Grintsvayg 2017-03-21 17:10:51 -04:00
parent 05f7f5c73c
commit da3ed0756e
3 changed files with 19 additions and 10 deletions

View file

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

View file

@ -9,23 +9,32 @@ at anytime.
## [Unreleased]
### Added
* Add `wallet_list` command
*
*
*
### Changed
* Dont add expected payment to wallet when payment rate is 0
*
*
*
### Fixed
* Fixed descriptor_get
* Fixed jsonrpc_reflect()
* Fixed api help return
* Fixed API command descriptor_get
* Fixed API command transaction_show
* Handle failure to decode claim cache file
*
*
*
## [0.9.2rc1] - 2017-03-21
### Added
* Add `wallet_list` command
### Changed
* Dont add expected payment to wallet when payment rate is 0
### Fixed
* Fixed descriptor_get
* Fixed jsonrpc_reflect()
* Fixed api help return
* Fixed API command descriptor_get
* Fixed API command transaction_show
* Handle failure to decode claim cache file
## [0.9.1] - 2017-03-17
### Fixed

View file

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