diff --git a/CHANGELOG.md b/CHANGELOG.md index 7334a4dff..4e5a78534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,7 +21,7 @@ at anytime. * ### Changed - * save claims to sqlite in batches to speed up `resolve` queries for many uris + * * ### Added @@ -33,6 +33,13 @@ at anytime. * +## [0.20.2] - 2018-06-23 +### Changed + * Bumped `lbryschema` requirement to 0.0.16 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0016---2018-06-23) + * Bumped `lbryum` requirement to 3.2.3 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#323---2018-06-23) + * save claims to sqlite in batches to speed up `resolve` queries for many uris + + ## [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) diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index abdb9333e..45bb49fa1 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.20.2rc3" +__version__ = "0.20.2" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 6fd3fc7db..6b1d1d267 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,8 +13,8 @@ GitPython==2.1.3 jsonrpc==1.2 jsonrpclib==0.1.7 keyring==10.4.0 -git+https://github.com/lbryio/lbryschema.git@v0.0.16rc4#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.2.3rc2#egg=lbryum +git+https://github.com/lbryio/lbryschema.git@v0.0.16#egg=lbryschema +git+https://github.com/lbryio/lbryum.git@v3.2.3#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pyyaml==3.12 diff --git a/setup.py b/setup.py index a4a3bcd52..e72f4a9d6 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ requires = [ 'base58', 'envparse', 'jsonrpc', - 'lbryschema==0.0.16rc4', - 'lbryum==3.2.3rc2', + 'lbryschema==0.0.16', + 'lbryum==3.2.3', 'miniupnpc', 'pyyaml', 'requests',