Bump version: 0.9.2rc2 → 0.9.2rc3
This commit is contained in:
parent
1a562d70aa
commit
e32aa928ac
3 changed files with 15 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.9.2rc2
|
||||
current_version = 0.9.2rc3
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?
|
||||
|
|
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -9,14 +9,13 @@ at anytime.
|
|||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
* Create wallet_unused_address API command
|
||||
* Add `claim_id` parameter to `get`, used to specify non-default claim for `name`
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
### Changed
|
||||
* wallet_new_address API command always returns new address
|
||||
* Improved ConnectionManager speed
|
||||
* Remove unused `stream_info` parameter in `get`
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
### Fixed
|
||||
|
@ -24,6 +23,15 @@ at anytime.
|
|||
*
|
||||
*
|
||||
|
||||
## [0.9.2rc3] - 2017-03-29
|
||||
### Added
|
||||
* Create wallet_unused_address API command
|
||||
* Add `claim_id` parameter to `get`, used to specify non-default claim for `name`
|
||||
### Changed
|
||||
* wallet_new_address API command always returns new address
|
||||
* Improved ConnectionManager speed
|
||||
* Remove unused `stream_info` parameter in `get`
|
||||
|
||||
## [0.9.2rc2] - 2017-03-25
|
||||
### Added
|
||||
* Add `wallet_list` command
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.9.2rc2"
|
||||
__version__ = "0.9.2rc3"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
Loading…
Reference in a new issue