Bump version 0.18.0rc1 --> 0.18.0

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2017-11-08 11:05:18 -05:00
parent 89d4351238
commit 28fea7093f
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF
4 changed files with 36 additions and 16 deletions

View file

@ -12,6 +12,28 @@ at anytime.
*
*
### Fixed
*
*
### Deprecated
*
*
### Changed
*
*
### Added
*
*
### Removed
*
*
## [0.18.0] - 2017-11-08
### Fixed
* 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)
@ -20,11 +42,9 @@ at anytime.
* Fixed incorrect response on attempting to delete blob twice
* Fixed local node ID reporting in peer list
### Deprecated
*
*
### 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
### Added

View file

@ -1,6 +1,6 @@
import logging
__version__ = "0.18.0rc1"
__version__ = "0.18.0"
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.11rc8#egg=lbryum
git+https://github.com/lbryio/lbryschema.git@v0.0.14rc2#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.1.11#egg=lbryum
git+https://github.com/lbryio/lbryschema.git@v0.0.14#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.11rc8',
'lbryschema==0.0.14rc2',
'lbryum==3.1.11',
'lbryschema==0.0.14',
'miniupnpc',
'pycrypto',
'pyyaml',