forked from LBRYCommunity/lbry-sdk
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
42
CHANGELOG.md
42
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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.18.0rc1"
|
||||
__version__ = "0.18.0"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
|
@ -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
|
||||
|
|
4
setup.py
4
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',
|
||||
|
|
Loading…
Reference in a new issue