Bump version 0.17.1rc5 --> 0.17.1

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2017-10-25 17:33:55 -04:00
parent c63d368e1c
commit 203f2f8988
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF
4 changed files with 33 additions and 18 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
import logging
__version__ = "0.17.1rc5"
__version__ = "0.17.1"
version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler())

View file

@ -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

View file

@ -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',