diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 475490418..0ad0715e8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 0.14.0rc99 +current_version = 0.14.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}{release}{candidate} {major}.{minor}.{patch} @@ -12,7 +12,7 @@ first_value = 1 [bumpversion:part:release] optional_value = production -values = +values = rc production diff --git a/CHANGELOG.md b/CHANGELOG.md index 40ede7e17..fc4b5563c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,35 +9,58 @@ at anytime. ## [Unreleased] ### 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 + * + * ### 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 * * ### 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 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 41873f216..41ce19adc 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.14.0rc99" +__version__ = "0.14.0" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())