forked from LBRYCommunity/lbry-sdk
Bump version 0.19.1rc7 --> 0.19.1
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
f283a2116e
commit
de280b5ebf
4 changed files with 39 additions and 17 deletions
46
CHANGELOG.md
46
CHANGELOG.md
|
@ -13,28 +13,50 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* fixed the inconsistencies in API and CLI docstrings
|
*
|
||||||
* `blob_announce` error when announcing a single blob
|
*
|
||||||
* `blob_list` error when looking up blobs by stream or sd hash
|
|
||||||
* issue#1107 where claiming a channel with the exact amount present in wallet would return a confusing error
|
|
||||||
* channel creation to use same bid logic as for claims ([1148])(https://github.com/lbryio/lbry/pull/1148)
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
* `report_bug` jsonrpc command
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* reflector server to periodically check and set `should_announce` for sd and head blobs instead of during each request
|
*
|
||||||
* reflector server to use `SQLiteStorage` to find needed blob hashes for a stream
|
*
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
* scripts to auto-generate documentation
|
*
|
||||||
* now updating new channel also takes into consideration the original bid amount, so now channel could be updated for wallet balance + the original bid amount
|
*
|
||||||
* forward-compatibility for upcoming DHT bencoding changes
|
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
* short(single dashed) arguments for `lbrynet-cli`
|
|
||||||
*
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
|
## [0.19.1] - 2018-03-20
|
||||||
|
### Fixed
|
||||||
|
* fixed the inconsistencies in API and CLI docstrings
|
||||||
|
* `blob_announce` error when announcing a single blob
|
||||||
|
* `blob_list` error when looking up blobs by stream or sd hash
|
||||||
|
* issue#1107 where claiming a channel with the exact amount present in wallet would return a confusing error
|
||||||
|
* channel creation to use same bid logic as for claims ([1148])(https://github.com/lbryio/lbry/pull/1148)
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
* `report_bug` jsonrpc command
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* Bumped `lbryschema` requirement to 0.0.15 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0015---2018-03-20)
|
||||||
|
* Bumped `lbryum` requirement to 3.2.0 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#320---2018-03-20)
|
||||||
|
* reflector server to periodically check and set `should_announce` for sd and head blobs instead of during each request
|
||||||
|
* reflector server to use `SQLiteStorage` to find needed blob hashes for a stream
|
||||||
|
|
||||||
|
### Added
|
||||||
|
* scripts to auto-generate documentation
|
||||||
|
* now updating new channel also takes into consideration the original bid amount, so now channel could be updated for wallet balance + the original bid amount
|
||||||
|
* forward-compatibility for upcoming DHT bencoding changes
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
* short(single dashed) arguments for `lbrynet-cli`
|
||||||
|
|
||||||
|
|
||||||
## [0.19.0] - 2018-03-02
|
## [0.19.0] - 2018-03-02
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.19.1rc7"
|
__version__ = "0.19.1"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
|
@ -12,8 +12,8 @@ GitPython==2.1.3
|
||||||
jsonrpc==1.2
|
jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
keyring==10.4.0
|
keyring==10.4.0
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.15rc3#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.15#egg=lbryschema
|
||||||
git+https://github.com/lbryio/lbryum.git@v3.2.0rc20#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.2.0#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
|
@ -20,8 +20,8 @@ requires = [
|
||||||
'base58',
|
'base58',
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'lbryschema==0.0.15rc3',
|
'lbryschema==0.0.15',
|
||||||
'lbryum==3.2.0rc20',
|
'lbryum==3.2.0',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
|
|
Loading…
Reference in a new issue