From da3ed0756ea468fee2d5643426a8fcf5d30d9d97 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Tue, 21 Mar 2017 17:10:51 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.1=20=E2=86=92=200.9.2rc1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 25 +++++++++++++++++-------- lbrynet/__init__.py | 2 +- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 45fd93f17..fee940cda 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.9.2rc1 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 d717c3c01..3a4287894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,23 +9,32 @@ at anytime. ## [Unreleased] ### Added - * Add `wallet_list` command + * * * ### Changed - * Dont add expected payment to wallet when payment rate is 0 + * * * ### Fixed - * Fixed descriptor_get - * Fixed jsonrpc_reflect() - * Fixed api help return - * Fixed API command descriptor_get - * Fixed API command transaction_show - * Handle failure to decode claim cache file * + * + * + +## [0.9.2rc1] - 2017-03-21 +### Added + * Add `wallet_list` command +### Changed + * Dont add expected payment to wallet when payment rate is 0 +### Fixed + * Fixed descriptor_get + * Fixed jsonrpc_reflect() + * Fixed api help return + * Fixed API command descriptor_get + * Fixed API command transaction_show + * Handle failure to decode claim cache file ## [0.9.1] - 2017-03-17 ### Fixed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 3d613ea02..ea853f495 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.9.1" +__version__ = "0.9.2rc1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())