From 28fea7093f93857fdfd0ea83d30caf66044c9ded Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 8 Nov 2017 11:05:18 -0500 Subject: [PATCH] Bump version 0.18.0rc1 --> 0.18.0 Signed-off-by: Jack Robison --- CHANGELOG.md | 42 +++++++++++++++++++++++++++++++----------- lbrynet/__init__.py | 2 +- requirements.txt | 4 ++-- setup.py | 4 ++-- 4 files changed, 36 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abddf798b..b9d3e4479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,27 +13,47 @@ at anytime. * ### 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) - * Fixed failing ConnectionManager unit test for parallel connections - * Fixed race condition between `publish` and `channel_new` - * Fixed incorrect response on attempting to delete blob twice - * Fixed local node ID reporting in peer list + * + * ### Deprecated * * ### Changed - * Moved BLOB_SIZE from conf.py to MAX_BLOB_SIZE in blob/blob_file.py + * + * ### Added - * Added `utxo_list` command to list unspent transaction outputs - * Added redundant API server for currency conversion + * + * ### Removed - * Removed some alternate methods of reading from blob files - * Removed `@AuthJSONRPCServer.queued` decorator + * + * + + +## [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) + * Fixed failing ConnectionManager unit test for parallel connections + * Fixed race condition between `publish` and `channel_new` + * Fixed incorrect response on attempting to delete blob twice + * Fixed local node ID reporting in peer list + +### 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 + * Added `utxo_list` command to list unspent transaction outputs + * Added redundant API server for currency conversion + +### Removed + * Removed some alternate methods of reading from blob files + * Removed `@AuthJSONRPCServer.queued` decorator ## [0.17.1] - 2017-10-25 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 35b08d0af..493493aee 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.18.0rc1" +__version__ = "0.18.0" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index d0b074969..170c9b09b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index f3652b837..585e968db 100644 --- a/setup.py +++ b/setup.py @@ -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',