Skip to content

Commit

Permalink
Bump version 0.19.1rc7 --> 0.19.1
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Robison <jackrobison@lbry.io>
  • Loading branch information
jackrobison committed Mar 20, 2018
1 parent f283a21 commit de280b5
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 17 deletions.
46 changes: 34 additions & 12 deletions CHANGELOG.md
Expand Up @@ -13,28 +13,50 @@ at anytime.
*

### 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
* 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.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
Expand Down
2 changes: 1 addition & 1 deletion lbrynet/__init__.py
@@ -1,6 +1,6 @@
import logging

__version__ = "0.19.1rc7"
__version__ = "0.19.1"
version = tuple(__version__.split('.'))

logging.getLogger(__name__).addHandler(logging.NullHandler())
4 changes: 2 additions & 2 deletions requirements.txt
Expand Up @@ -12,8 +12,8 @@ GitPython==2.1.3
jsonrpc==1.2
jsonrpclib==0.1.7
keyring==10.4.0
git+https://github.com/lbryio/lbryschema.git@v0.0.15rc3#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.2.0rc20#egg=lbryum
git+https://github.com/lbryio/lbryschema.git@v0.0.15#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.2.0#egg=lbryum
miniupnpc==1.9
pbkdf2==1.3
pycrypto==2.6.1
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -20,8 +20,8 @@
'base58',
'envparse',
'jsonrpc',
'lbryschema==0.0.15rc3',
'lbryum==3.2.0rc20',
'lbryschema==0.0.15',
'lbryum==3.2.0',
'miniupnpc',
'pycrypto',
'pyyaml',
Expand Down

0 comments on commit de280b5

Please sign in to comment.