Bump version 0.18.0rc1 --> 0.18.0
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
89d4351238
commit
28fea7093f
4 changed files with 36 additions and 16 deletions
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -12,6 +12,28 @@ at anytime.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Added
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
|
## [0.18.0] - 2017-11-08
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed amount of close nodes to add to list in case of extension to neighbouring k-buckets
|
* Fixed amount of close nodes to add to list in case of extension to neighbouring k-buckets
|
||||||
* Fixed external IP detection via jsonip.com (avoid detecting IPv6)
|
* Fixed external IP detection via jsonip.com (avoid detecting IPv6)
|
||||||
|
@ -20,11 +42,9 @@ at anytime.
|
||||||
* Fixed incorrect response on attempting to delete blob twice
|
* Fixed incorrect response on attempting to delete blob twice
|
||||||
* Fixed local node ID reporting in peer list
|
* Fixed local node ID reporting in peer list
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
*
|
|
||||||
*
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
* Bumped `lbryschema` requirement to 0.0.14 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0014---2017-11-08)
|
||||||
|
* Bumped `lbryum` requirement to 3.1.11 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#3111---2017-11-08)
|
||||||
* Moved BLOB_SIZE from conf.py to MAX_BLOB_SIZE in blob/blob_file.py
|
* Moved BLOB_SIZE from conf.py to MAX_BLOB_SIZE in blob/blob_file.py
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.18.0rc1"
|
__version__ = "0.18.0"
|
||||||
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.11rc8#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.1.11#egg=lbryum
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.14rc2#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.14#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.11rc8',
|
'lbryum==3.1.11',
|
||||||
'lbryschema==0.0.14rc2',
|
'lbryschema==0.0.14',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
|
|
Loading…
Reference in a new issue