mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-23 17:27:25 +00:00
Bump version 0.15.0 --> 0.15.1
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
eede1937a8
commit
8cf2bc2b19
4 changed files with 19 additions and 8 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -21,18 +21,29 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Persist DHT node id
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
* Android platform detection in lbrynet/conf.py
|
*
|
||||||
* androidhelpers module for determining base file paths
|
*
|
||||||
|
|
||||||
### Removed
|
### 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
|
## [0.15.0] - 2017-08-15
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht
|
* Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.15.0"
|
__version__ = "0.15.1"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
|
@ -13,8 +13,8 @@ gmpy==1.17
|
||||||
jsonrpc==1.2
|
jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
jsonschema==2.5.1
|
jsonschema==2.5.1
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.9#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.10#egg=lbryschema
|
||||||
git+https://github.com/lbryio/lbryum.git@v3.1.5#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.1.6#egg=lbryum
|
||||||
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.5',
|
'lbryum==3.1.6',
|
||||||
'lbryschema==0.0.9',
|
'lbryschema==0.0.10',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
|
|
Loading…
Add table
Reference in a new issue