diff --git a/CHANGELOG.md b/CHANGELOG.md index 521e31ee0..2d9f4856a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,26 +13,19 @@ at anytime. * ### Fixed - * Fixed slow startup for nodes with many lbry files - * Fixed setting the external ip on startup - * Fixed session startup not blocking on joining the dht - * Fixed several parsing bugs that prevented replacing dead dht contacts - * Fixed lbryid length validation - * Fixed an old print statement that polluted logs - * Fixed rpc id length for dht requests + * + * ### Deprecated * * ### Changed - * Use the first port available for the peer and dht ports, starting with the provided values (defaults of 3333 and 4444). This allows multiple lbrynet instances in a LAN with UPnP. - * Detect a UPnP redirect that didn't get cleaned up on a previous run and use it - * Bumped jsonschema requirement to 2.6.0 - * Refactor some assert statements to accommodate the PYTHONOPTIMIZE flag set for Android. - + * + * + ### Added - * Added `wallet_prefill_addresses` command, which distributes credits to multiple addresses + * * ### Removed @@ -40,6 +33,28 @@ at anytime. * +## [0.17.1] - 2017-10-25 +### Fixed + * Fixed slow startup for nodes with many lbry files + * Fixed setting the external ip on startup + * Fixed session startup not blocking on joining the dht + * Fixed several parsing bugs that prevented replacing dead dht contacts + * Fixed lbryid length validation + * Fixed an old print statement that polluted logs + * Fixed rpc id length for dht requests + +### Changed + * Bumped `lbryschema` requirement to 0.0.13 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0013---2017-10-25) + * Bumped `lbryum` requirement to 3.1.10 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#3110---2017-10-25) + * Use the first port available for the peer and dht ports, starting with the provided values (defaults of 3333 and 4444). This allows multiple lbrynet instances in a LAN with UPnP. + * Detect a UPnP redirect that didn't get cleaned up on a previous run and use it + * Bumped jsonschema requirement to 2.6.0 + * Refactor some assert statements to accommodate the PYTHONOPTIMIZE flag set for Android. + +### Added + * Added `wallet_prefill_addresses` command, which distributes credits to multiple addresses + + ## [0.17.0] - 2017-10-12 ### Fixed * Fixed handling cancelled blob and availability requests diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 9273b75ff..1bb444821 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.17.1rc5" +__version__ = "0.17.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 994fcfc08..b060e18f0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,8 +14,8 @@ gmpy==1.17 jsonrpc==1.2 jsonrpclib==0.1.7 jsonschema==2.6.0 -git+https://github.com/lbryio/lbryum.git@v3.1.10rc1#egg=lbryum -git+https://github.com/lbryio/lbryschema.git@v0.0.13rc1#egg=lbryschema +git+https://github.com/lbryio/lbryum.git@v3.1.10#egg=lbryum +git+https://github.com/lbryio/lbryschema.git@v0.0.13#egg=lbryschema miniupnpc==1.9 pbkdf2==1.3 pycrypto==2.6.1 diff --git a/setup.py b/setup.py index d9858bb5d..21f5b018d 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ requires = [ 'envparse', 'jsonrpc', 'jsonschema', - 'lbryum==3.1.10rc1', - 'lbryschema==0.0.13rc1', + 'lbryum==3.1.10', + 'lbryschema==0.0.13', 'miniupnpc', 'pycrypto', 'pyyaml',