forked from LBRYCommunity/lbry-sdk
Bump version: 0.9.1 → 0.9.2rc1
This commit is contained in:
parent
05f7f5c73c
commit
da3ed0756e
3 changed files with 19 additions and 10 deletions
|
@ -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+))?
|
||||
|
|
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -9,15 +9,25 @@ at anytime.
|
|||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
* Add `wallet_list` command
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
### Changed
|
||||
* Dont add expected payment to wallet when payment rate is 0
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
### Fixed
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
## [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()
|
||||
|
@ -25,7 +35,6 @@ at anytime.
|
|||
* Fixed API command descriptor_get
|
||||
* Fixed API command transaction_show
|
||||
* Handle failure to decode claim cache file
|
||||
*
|
||||
|
||||
## [0.9.1] - 2017-03-17
|
||||
### Fixed
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.9.1"
|
||||
__version__ = "0.9.2rc1"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
Loading…
Reference in a new issue