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]
|
||||
current_version = 0.11.0rc3
|
||||
current_version = 0.11.0
|
||||
commit = True
|
||||
tag = True
|
||||
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.
|
||||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
*
|
||||
*
|
||||
|
||||
### Changed
|
||||
*
|
||||
*
|
||||
|
||||
### Fixed
|
||||
*
|
||||
*
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
*
|
||||
|
||||
### Removed
|
||||
*
|
||||
*
|
||||
|
||||
## [0.11.0] - 2017-06-09
|
||||
|
||||
### Added
|
||||
* Added claim_address option to publish API command
|
||||
* Added message for InsufficientFundsError exception
|
||||
* Add CLI docs
|
||||
|
||||
|
||||
### Changed
|
||||
* Do not catch base exception in API command resolve
|
||||
* Remove deprecated `lbrynet.metadata` and update what used it to instead use `lbryschema`
|
||||
* Get version information locally instead of via api for cli
|
||||
|
||||
### Fixed
|
||||
* Download analytics error
|
||||
*
|
||||
|
||||
### Deprecated
|
||||
* 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 `get_start_notice`
|
||||
|
||||
### Removed
|
||||
*
|
||||
*
|
||||
|
||||
### Fixed
|
||||
* Download analytics error
|
||||
|
||||
|
||||
|
||||
## [0.10.3production4] - 2017-06-01
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.11.0rc3"
|
||||
__version__ = "0.11.0"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
Loading…
Reference in a new issue