forked from LBRYCommunity/lbry-sdk
Bump version: 0.14.0rc99 → 0.14.0
This commit is contained in:
parent
da511700a7
commit
3382c18f81
3 changed files with 46 additions and 23 deletions
|
@ -1,9 +1,9 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.14.0rc99
|
current_version = 0.14.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+))?
|
||||||
serialize =
|
serialize =
|
||||||
{major}.{minor}.{patch}{release}{candidate}
|
{major}.{minor}.{patch}{release}{candidate}
|
||||||
{major}.{minor}.{patch}
|
{major}.{minor}.{patch}
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ first_value = 1
|
||||||
|
|
||||||
[bumpversion:part:release]
|
[bumpversion:part:release]
|
||||||
optional_value = production
|
optional_value = production
|
||||||
values =
|
values =
|
||||||
rc
|
rc
|
||||||
production
|
production
|
||||||
|
|
||||||
|
|
61
CHANGELOG.md
61
CHANGELOG.md
|
@ -9,35 +9,58 @@ at anytime.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
* Missing docstring for `blob_list`
|
*
|
||||||
* Added convenient import for setting up a daemon client, `from lbrynet.daemon import get_client`
|
*
|
||||||
* Added unit tests for CryptBlob.py
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Change `max_key_fee` setting to be a dictionary with values for `currency` and `amount`
|
*
|
||||||
* Renamed `lbrynet.lbryfile` to `lbrynet.lbry_file`
|
*
|
||||||
* Renamed `lbrynet.lbryfilemanager` to `lbrynet.file_manager`
|
|
||||||
* Renamed `lbrynet.lbrynet_daemon` to `lbrynet.daemon`
|
|
||||||
* Initialize lbrynet settings when configuring an api client if they are not set yet
|
|
||||||
* Updated lbryum imports
|
|
||||||
* Improve error message when resolving a claim fails using the "get" command
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed some log messages throwing exceptions
|
*
|
||||||
* Fix shutdown of the blob tracker by Session
|
*
|
||||||
* Fixed claim_new_support docstrings
|
|
||||||
* Fixed BlobManager causing functional tests to fail, removed its unneeded manage() loop
|
|
||||||
* Increased max_key_fee
|
|
||||||
* Fixed unit tests on appveyor Windows build
|
|
||||||
* Fixed [#692](https://github.com/lbryio/lbry/issues/692)
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
* Removed unused settings from conf.py and `settings_set`
|
*
|
||||||
* Removed download_directory argument from API command get
|
*
|
||||||
|
|
||||||
|
## [0.14.0] - 2017-07-05
|
||||||
|
|
||||||
|
### Added
|
||||||
|
* Missing docstring for `blob_list`
|
||||||
|
* Added convenient import for setting up a daemon client, `from lbrynet.daemon import get_client`
|
||||||
|
* Added unit tests for CryptBlob.py
|
||||||
|
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* Change `max_key_fee` setting to be a dictionary with values for `currency` and `amount`
|
||||||
|
* Renamed `lbrynet.lbryfile` to `lbrynet.lbry_file`
|
||||||
|
* Renamed `lbrynet.lbryfilemanager` to `lbrynet.file_manager`
|
||||||
|
* Renamed `lbrynet.lbrynet_daemon` to `lbrynet.daemon`
|
||||||
|
* Initialize lbrynet settings when configuring an api client if they are not set yet
|
||||||
|
* Updated lbryum imports
|
||||||
|
* Improve error message when resolving a claim fails using the "get" command
|
||||||
|
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
* Removed unused settings from conf.py and `settings_set`
|
||||||
|
* Removed download_directory argument from API command get
|
||||||
|
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* Fixed some log messages throwing exceptions
|
||||||
|
* Fix shutdown of the blob tracker by Session
|
||||||
|
* Fixed claim_new_support docstrings
|
||||||
|
* Fixed BlobManager causing functional tests to fail, removed its unneeded manage() loop
|
||||||
|
* Increased max_key_fee
|
||||||
|
* Fixed unit tests on appveyor Windows build
|
||||||
|
* Fixed [#692](https://github.com/lbryio/lbry/issues/692)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [0.13.1] - 2017-06-15
|
## [0.13.1] - 2017-06-15
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.14.0rc99"
|
__version__ = "0.14.0"
|
||||||
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