diff --git a/CHANGELOG.md b/CHANGELOG.md index e88302536..bd4fb7bec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,20 +13,15 @@ at anytime. * ### Fixed - * fixed token validation error when the dht node has just been started (https://github.com/lbryio/lbry/issues/1248) - * fixed a race condition when inserting a blob into the database (https://github.com/lbryio/lbry/issues/1129) - * reflector server incorrectly responding as if it has all the blobs for a stream that was only partially uploaded to it - * `publish` raising a database error when updating a claim that we don't have a file for (https://github.com/lbryio/lbry/issues/1165) - * blob client protocol not tearing itself down properly after a failure (https://github.com/lbryio/lbry/issues/950) - * lockup in wallet startup when one or more lbryumx servers are unavailable (https://github.com/lbryio/lbry/issues/1245) - * download being stopped if the sd blob downloaded and data did not start within the timeout (https://github.com/lbryio/lbry/issues/1172) + * + * ### Deprecated * * ### Changed - * `publish` to accept bid as a decimal string + * * ### Added @@ -38,6 +33,21 @@ at anytime. * +## [0.20.1] - 2018-06-19 +### Fixed + * fixed token validation error when the dht node has just been started (https://github.com/lbryio/lbry/issues/1248) + * fixed a race condition when inserting a blob into the database (https://github.com/lbryio/lbry/issues/1129) + * reflector server incorrectly responding as if it has all the blobs for a stream that was only partially uploaded to it + * `publish` raising a database error when updating a claim that we don't have a file for (https://github.com/lbryio/lbry/issues/1165) + * blob client protocol not tearing itself down properly after a failure (https://github.com/lbryio/lbry/issues/950) + * lockup in wallet startup when one or more lbryumx servers are unavailable (https://github.com/lbryio/lbry/issues/1245) + * download being stopped if the sd blob downloaded and data did not start within the timeout (https://github.com/lbryio/lbry/issues/1172) + +### Changed + * Bumped `lbryum` requirement to 3.2.2 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#322---2018-06-19) + * `publish` to accept bid as a decimal string + + ## [0.20.0] - 2018-06-13 ### TL;DR diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 8e1d78b65..da445b598 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.20.1rc5" +__version__ = "0.20.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index e0446b681..09e387280 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ jsonrpc==1.2 jsonrpclib==0.1.7 keyring==10.4.0 git+https://github.com/lbryio/lbryschema.git@v0.0.16rc2#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.2.2rc3#egg=lbryum +git+https://github.com/lbryio/lbryum.git@v3.2.2#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pyyaml==3.12 diff --git a/setup.py b/setup.py index 44184aea5..99e3ee2e5 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ requires = [ 'envparse', 'jsonrpc', 'lbryschema==0.0.16rc2', - 'lbryum==3.2.2rc3', + 'lbryum==3.2.2', 'miniupnpc', 'pyyaml', 'requests',