Bump version: 0.11.0rc3 → 0.11.0
This commit is contained in:
parent
2aec457a19
commit
5679ffb6a9
3 changed files with 64 additions and 42 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.11.0rc3
|
current_version = 0.11.0
|
||||||
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+))?
|
||||||
|
|
34
CHANGELOG.md
34
CHANGELOG.md
|
@ -8,19 +8,39 @@ can and probably will change functionality and break backwards compatability
|
||||||
at anytime.
|
at anytime.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Added
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
## [0.11.0] - 2017-06-09
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
* Added claim_address option to publish API command
|
* Added claim_address option to publish API command
|
||||||
* Added message for InsufficientFundsError exception
|
* Added message for InsufficientFundsError exception
|
||||||
* Add CLI docs
|
* Add CLI docs
|
||||||
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Do not catch base exception in API command resolve
|
* Do not catch base exception in API command resolve
|
||||||
* Remove deprecated `lbrynet.metadata` and update what used it to instead use `lbryschema`
|
* Remove deprecated `lbrynet.metadata` and update what used it to instead use `lbryschema`
|
||||||
* Get version information locally instead of via api for cli
|
* Get version information locally instead of via api for cli
|
||||||
|
|
||||||
### Fixed
|
|
||||||
* Download analytics error
|
|
||||||
*
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
* Old fee metadata format in publish API command is deprecated, throw relevant exception
|
* Old fee metadata format in publish API command is deprecated, throw relevant exception
|
||||||
|
@ -57,9 +77,11 @@ at anytime.
|
||||||
* Removed deprecated `reflect_all_blobs`
|
* Removed deprecated `reflect_all_blobs`
|
||||||
* Removed deprecated `get_start_notice`
|
* Removed deprecated `get_start_notice`
|
||||||
|
|
||||||
### Removed
|
|
||||||
*
|
### Fixed
|
||||||
*
|
* Download analytics error
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [0.10.3production4] - 2017-06-01
|
## [0.10.3production4] - 2017-06-01
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.11.0rc3"
|
__version__ = "0.11.0"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
Loading…
Add table
Reference in a new issue