Bump version: 0.9.2rc1 → 0.9.2rc2
This commit is contained in:
parent
b4f5f2068f
commit
b04455f9c7
3 changed files with 27 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.9.2rc1
|
current_version = 0.9.2rc2
|
||||||
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+))?
|
||||||
|
|
39
CHANGELOG.md
39
CHANGELOG.md
|
@ -9,27 +9,38 @@ at anytime.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
* Add `wallet_list` command
|
*
|
||||||
* Add checks for missing/extraneous params when calling jsonrpc commands
|
*
|
||||||
* Added colors to cli error messages
|
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Removed check_pending logic from Daemon
|
*
|
||||||
* Switched to txrequests so requests can use twisted event loop
|
*
|
||||||
* Renamed API command file_seed to file_set_status
|
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fix restart procedure in DaemonControl
|
|
||||||
* Create download directory if it doesn't exist
|
|
||||||
* Fixed descriptor_get
|
|
||||||
* Fixed jsonrpc_reflect()
|
|
||||||
* Fixed api help return
|
|
||||||
* Fixed API command descriptor_get
|
|
||||||
* Fixed API command transaction_show
|
|
||||||
* Fixed error handling for jsonrpc commands
|
|
||||||
*
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
## [0.9.2rc2] - 2017-03-25
|
||||||
|
### Added
|
||||||
|
* Add `wallet_list` command
|
||||||
|
* Add checks for missing/extraneous params when calling jsonrpc commands
|
||||||
|
* Added colors to cli error messages
|
||||||
|
### Changed
|
||||||
|
* Removed check_pending logic from Daemon
|
||||||
|
* Switched to txrequests so requests can use twisted event loop
|
||||||
|
* Renamed API command file_seed to file_set_status
|
||||||
|
### Fixed
|
||||||
|
* Fix restart procedure in DaemonControl
|
||||||
|
* Create download directory if it doesn't exist
|
||||||
|
* Fixed descriptor_get
|
||||||
|
* Fixed jsonrpc_reflect()
|
||||||
|
* Fixed api help return
|
||||||
|
* Fixed API command descriptor_get
|
||||||
|
* Fixed API command transaction_show
|
||||||
|
* Fixed error handling for jsonrpc commands
|
||||||
|
|
||||||
## [0.9.2rc1] - 2017-03-21
|
## [0.9.2rc1] - 2017-03-21
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.9.2rc1"
|
__version__ = "0.9.2rc2"
|
||||||
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