Bump version: 0.14.0rc99 → 0.14.0

This commit is contained in:
Alex Grintsvayg 2017-07-05 15:58:59 -04:00
parent da511700a7
commit 3382c18f81
3 changed files with 46 additions and 23 deletions

View file

@ -1,5 +1,5 @@
[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+))?

View file

@ -8,11 +8,34 @@ can and probably will change functionality and break backwards compatability
at anytime. at anytime.
## [Unreleased] ## [Unreleased]
### Added
*
*
### Changed
*
*
### Fixed
*
*
### Deprecated
*
*
### Removed
*
*
## [0.14.0] - 2017-07-05
### Added ### Added
* Missing docstring for `blob_list` * Missing docstring for `blob_list`
* Added convenient import for setting up a daemon client, `from lbrynet.daemon import get_client` * Added convenient import for setting up a daemon client, `from lbrynet.daemon import get_client`
* Added unit tests for CryptBlob.py * Added unit tests for CryptBlob.py
### Changed ### Changed
* Change `max_key_fee` setting to be a dictionary with values for `currency` and `amount` * Change `max_key_fee` setting to be a dictionary with values for `currency` and `amount`
* Renamed `lbrynet.lbryfile` to `lbrynet.lbry_file` * Renamed `lbrynet.lbryfile` to `lbrynet.lbry_file`
@ -22,6 +45,12 @@ at anytime.
* Updated lbryum imports * Updated lbryum imports
* Improve error message when resolving a claim fails using the "get" command * 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
* Fixed some log messages throwing exceptions * Fixed some log messages throwing exceptions
* Fix shutdown of the blob tracker by Session * Fix shutdown of the blob tracker by Session
@ -31,13 +60,7 @@ at anytime.
* Fixed unit tests on appveyor Windows build * Fixed unit tests on appveyor Windows build
* Fixed [#692](https://github.com/lbryio/lbry/issues/692) * Fixed [#692](https://github.com/lbryio/lbry/issues/692)
### Deprecated
*
*
### Removed
* Removed unused settings from conf.py and `settings_set`
* Removed download_directory argument from API command get
## [0.13.1] - 2017-06-15 ## [0.13.1] - 2017-06-15

View file

@ -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())