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

@ -12,6 +12,28 @@ at anytime.
* *
* *
### Fixed
*
*
### Deprecated
*
*
### Changed
*
*
### Added
*
*
### Removed
*
*
## [0.19.1] - 2018-03-20
### Fixed ### Fixed
* fixed the inconsistencies in API and CLI docstrings * fixed the inconsistencies in API and CLI docstrings
* `blob_announce` error when announcing a single blob * `blob_announce` error when announcing a single blob
@ -21,9 +43,10 @@ at anytime.
### Deprecated ### Deprecated
* `report_bug` jsonrpc command * `report_bug` jsonrpc command
*
### Changed ### 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 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 * reflector server to use `SQLiteStorage` to find needed blob hashes for a stream
@ -34,7 +57,6 @@ at anytime.
### Removed ### Removed
* short(single dashed) arguments for `lbrynet-cli` * 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',