diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fee940cda..bff3960a6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2rc1 +current_version = 0.9.2rc2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f58fef85..1d5408dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,27 +9,38 @@ at anytime. ## [Unreleased] ### Added - * Add `wallet_list` command - * Add checks for missing/extraneous params when calling jsonrpc commands - * Added colors to cli error messages + * + * * ### Changed - * Removed check_pending logic from Daemon - * Switched to txrequests so requests can use twisted event loop - * Renamed API command file_seed to file_set_status + * + * * ### Fixed - * Fix restart procedure in DaemonControl - * Create download directory if it doesn't exist - * Fixed descriptor_get - * Fixed jsonrpc_reflect() - * Fixed api help return - * Fixed API command descriptor_get - * Fixed API command transaction_show - * Fixed error handling for jsonrpc commands * + * + * + +## [0.9.2rc2] - 2017-03-25 +### Added + * Add `wallet_list` command + * Add checks for missing/extraneous params when calling jsonrpc commands + * Added colors to cli error messages +### Changed + * Removed check_pending logic from Daemon + * Switched to txrequests so requests can use twisted event loop + * Renamed API command file_seed to file_set_status +### Fixed + * Fix restart procedure in DaemonControl + * Create download directory if it doesn't exist + * Fixed descriptor_get + * Fixed jsonrpc_reflect() + * Fixed api help return + * Fixed API command descriptor_get + * Fixed API command transaction_show + * Fixed error handling for jsonrpc commands ## [0.9.2rc1] - 2017-03-21 ### Added diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index ea853f495..ef4874c8f 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.9.2rc1" +__version__ = "0.9.2rc2" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())