forked from LBRYCommunity/lbry-sdk
Bump version 0.17.1rc5 --> 0.17.1
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
c63d368e1c
commit
203f2f8988
4 changed files with 33 additions and 18 deletions
41
CHANGELOG.md
41
CHANGELOG.md
|
@ -13,26 +13,19 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### 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
|
### Deprecated
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### 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
|
||||||
* Added `wallet_prefill_addresses` command, which distributes credits to multiple addresses
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Removed
|
### 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
|
## [0.17.0] - 2017-10-12
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed handling cancelled blob and availability requests
|
* Fixed handling cancelled blob and availability requests
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.17.1rc5"
|
__version__ = "0.17.1"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
|
@ -14,8 +14,8 @@ gmpy==1.17
|
||||||
jsonrpc==1.2
|
jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
jsonschema==2.6.0
|
jsonschema==2.6.0
|
||||||
git+https://github.com/lbryio/lbryum.git@v3.1.10rc1#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.1.10#egg=lbryum
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.13rc1#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.13#egg=lbryschema
|
||||||
miniupnpc==1.9
|
miniupnpc==1.9
|
||||||
pbkdf2==1.3
|
pbkdf2==1.3
|
||||||
pycrypto==2.6.1
|
pycrypto==2.6.1
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -21,8 +21,8 @@ requires = [
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'jsonschema',
|
'jsonschema',
|
||||||
'lbryum==3.1.10rc1',
|
'lbryum==3.1.10',
|
||||||
'lbryschema==0.0.13rc1',
|
'lbryschema==0.0.13',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
|
|
Loading…
Reference in a new issue