forked from LBRYCommunity/lbry-sdk
Bump version: 0.9.2rc8 → 0.9.2rc9
This commit is contained in:
parent
c0ccfe2046
commit
e54dc9a01d
3 changed files with 21 additions and 12 deletions
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.9.2rc8
|
||||
current_version = 0.9.2rc9
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?
|
||||
|
|
29
CHANGELOG.md
29
CHANGELOG.md
|
@ -9,23 +9,32 @@ at anytime.
|
|||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
* Use `claim_id` instead of outpoint for `claim_abandon`
|
||||
* Add `channel_name` parameter to `publish`
|
||||
* Add `delete_all` parameter to `file_delete` to allow deleting multiple files
|
||||
* Add `channel_list_mine`
|
||||
* Add `channel_new`
|
||||
* Add `resolve` to resolve lbry uris
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
### Changed
|
||||
* Use `uri` instead of `name` for `get`, remove explicit `claim_id` parameter
|
||||
* Increase default download timeout
|
||||
* Use lbry.io api for exchange rate data
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
### Fixed
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
## [0.9.2rc9] - 2017-04-08
|
||||
### Added
|
||||
* Use `claim_id` instead of outpoint for `claim_abandon`
|
||||
* Add `channel_name` parameter to `publish`
|
||||
* Add `delete_all` parameter to `file_delete` to allow deleting multiple files
|
||||
* Add `channel_list_mine`
|
||||
* Add `channel_new`
|
||||
* Add `resolve` to resolve lbry uris
|
||||
### Changed
|
||||
* Use `uri` instead of `name` for `get`, remove explicit `claim_id` parameter
|
||||
* Increase default download timeout
|
||||
* Use lbry.io api for exchange rate data
|
||||
|
||||
## [0.9.2rc4] - 2017-04-06
|
||||
### Changed
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.9.2rc8"
|
||||
__version__ = "0.9.2rc9"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
Loading…
Reference in a new issue