forked from LBRYCommunity/lbry-sdk
Bump version: 0.9.1rc4 → 0.9.1rc5
This commit is contained in:
parent
15517732ae
commit
b00c20180b
3 changed files with 13 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.9.1rc4
|
current_version = 0.9.1rc5
|
||||||
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+))?
|
||||||
|
|
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -9,8 +9,7 @@ at anytime.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
* publish API command can take metadata fields as arguments
|
*
|
||||||
* Added `reflect_uploads` config to disable reflecting on upload
|
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
|
@ -20,9 +19,17 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed jsonrpc_reflect()
|
|
||||||
* Fixed api help return
|
|
||||||
*
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
## [0.9.1rc5] - 2017-03-16
|
||||||
|
### Added
|
||||||
|
* publish API command can take metadata fields as arguments
|
||||||
|
* Added `reflect_uploads` config to disable reflecting on upload
|
||||||
|
### Fixed
|
||||||
|
* Fixed jsonrpc_reflect()
|
||||||
|
* Fixed api help return
|
||||||
|
|
||||||
## [0.9.1rc2] - 2017-03-15
|
## [0.9.1rc2] - 2017-03-15
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.9.1rc4"
|
__version__ = "0.9.1rc5"
|
||||||
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