Bump version 0.19.1rc7 --> 0.19.1

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2018-03-20 10:15:50 -04:00
parent f283a2116e
commit de280b5ebf
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
4 changed files with 39 additions and 17 deletions

View file

@ -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

View file

@ -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())

View file

@ -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

View file

@ -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',