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]
|
[bumpversion]
|
||||||
current_version = 0.9.1
|
current_version = 0.9.2rc1
|
||||||
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+))?
|
||||||
|
|
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -9,23 +9,32 @@ at anytime.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
* Add `wallet_list` command
|
*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Dont add expected payment to wallet when payment rate is 0
|
*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### 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
|
## [0.9.1] - 2017-03-17
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.9.1"
|
__version__ = "0.9.2rc1"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
Loading…
Reference in a new issue