From 0d54f6215fc054c92d4161e39bbb7bb52630a251 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 13 Aug 2018 16:20:16 -0400 Subject: [PATCH] Bump version 0.21.1rc2 --> 0.21.1 Signed-off-by: Jack Robison --- CHANGELOG.md | 17 ++++++++++++++--- lbrynet/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddfe739bc..f9493fcd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,8 @@ at anytime. * ### Fixed - * `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355) - * `wallet_send` not accepting decimal amounts (https://github.com/lbryio/lbry/issues/1356 commit https://github.com/lbryio/lbry/commit/1098ca0494ece420c70fc57f69d6d388715a99b8) + * + * ### Deprecated * @@ -25,7 +25,7 @@ at anytime. * ### Added - * `is_locked` to `wallet` in `status` response (https://github.com/lbryio/lbry/issues/1354, commit https://github.com/lbryio/lbry/commit/153022a1a7122ab6d31d3db433dccbe469bbcb3c) + * * ### Removed @@ -33,6 +33,17 @@ at anytime. * +## [0.21.1] - 2018-08-13 +### Fixed + * `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355) + * `wallet_send` not accepting decimal amounts (https://github.com/lbryio/lbry/issues/1356 commit https://github.com/lbryio/lbry/commit/1098ca0494ece420c70fc57f69d6d388715a99b8) + +### Added + * `is_locked` to `wallet` in `status` response (https://github.com/lbryio/lbry/issues/1354, commit https://github.com/lbryio/lbry/commit/153022a1a7122ab6d31d3db433dccbe469bbcb3c) + +### Changed + * Bumped `lbryum` requirement to 3.2.4 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#324---2018-08-13) + ## [0.21.0] - 2018-08-09 ### Fixed * check `claim_address` and `change_address` earlier on publishing, to avoid hard to understand errors later in the process (pr https://github.com/lbryio/lbry/pull/1347) diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 4ba723c59..f907f0947 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.21.1rc2" +__version__ = "0.21.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index b6a9228f2..af06396d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ GitPython==2.1.3 jsonrpc==1.2 keyring==10.4.0 git+https://github.com/lbryio/lbryschema.git@v0.0.16#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.2.4rc1#egg=lbryum +git+https://github.com/lbryio/lbryum.git@v3.2.4#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pyyaml==3.12 diff --git a/setup.py b/setup.py index f60af1073..a33167f24 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ requires = [ 'envparse', 'jsonrpc', 'lbryschema==0.0.16', - 'lbryum==3.2.4rc1', + 'lbryum==3.2.4', 'miniupnpc', 'txupnp==0.0.1a10', 'pyyaml',