diff --git a/CHANGELOG.md b/CHANGELOG.md index 665aa0c45..b5e95708e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,18 +21,29 @@ at anytime. * ### Changed - * Persist DHT node id + * * ### Added - * Android platform detection in lbrynet/conf.py - * androidhelpers module for determining base file paths + * + * ### Removed * * +## [0.15.1] - 2017-08-22 +### Changed + * Bumped `lbryschema` requirement to 0.0.10 [see changelog](https://github.com/lbryschema/lbryschema/blob/master/CHANGELOG.md#0010---2017-08-22) + * Bumped `lbryum` requirement to 3.1.6 [see changelog](https://github.com/lbryum/lbryum/blob/master/CHANGELOG.md#316---2017-08-22) + * Persist DHT node id + +### Added + * Android platform detection in lbrynet/conf.py + * androidhelpers module for determining base file paths + + ## [0.15.0] - 2017-08-15 ### Fixed * Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 5480a0555..68a7ca5a0 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.15.0" +__version__ = "0.15.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 7b5d152d3..29f43ff1e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,8 +13,8 @@ gmpy==1.17 jsonrpc==1.2 jsonrpclib==0.1.7 jsonschema==2.5.1 -git+https://github.com/lbryio/lbryschema.git@v0.0.9#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.1.5#egg=lbryum +git+https://github.com/lbryio/lbryschema.git@v0.0.10#egg=lbryschema +git+https://github.com/lbryio/lbryum.git@v3.1.6#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pycrypto==2.6.1 diff --git a/setup.py b/setup.py index 5b1dc577c..f0ab78b39 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ requires = [ 'envparse', 'jsonrpc', 'jsonschema', - 'lbryum==3.1.5', - 'lbryschema==0.0.9', + 'lbryum==3.1.6', + 'lbryschema==0.0.10', 'miniupnpc', 'pycrypto', 'pyyaml',