Bump version: 0.9.2rc21 → 0.9.2rc22

This commit is contained in:
Alex Grintsvayg 2017-04-12 15:23:08 -04:00
parent 8c361aef1a
commit 4698910ab7
3 changed files with 28 additions and 14 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.9.2rc21 current_version = 0.9.2rc22
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))? parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?

View file

@ -9,21 +9,35 @@ at anytime.
## [Unreleased] ## [Unreleased]
### Added ### Added
* Add `claim_id` parameter to `claim_show` *
* Add `hex` field to claim responses for the raw claim value *
* Add an `error` field to to file responses if an error occurs *
### Changed ### Changed
* Use `uri` instead of `name` in `get_availability` *
* Add `channel_name` to claim and file responses where applicable *
* Return None (instead of errors) if a uri cannot be resolved *
* Use `uri` instead of `name` for `stream_cost_estimate`, update cost estimate for lbryschema
### Fixed ### Fixed
* `file_list` for files with bad signatures *
* return None from resolve commands when nothing is found *
* return lbry files with claims that are abandoned *
* unhelpful error messages in `publish` and `channel_new`
## [0.9.2rc22] - 2017-04-12
### Added
* Add `claim_id` parameter to `claim_show`
* Add `hex` field to claim responses for the raw claim value
* Add an `error` field to to file responses if an error occurs
### Changed
* Use `uri` instead of `name` in `get_availability`
* Add `channel_name` to claim and file responses where applicable
* Return None (instead of errors) if a uri cannot be resolved
* Use `uri` instead of `name` for `stream_cost_estimate`, update cost estimate for lbryschema
### Fixed
* `file_list` for files with bad signatures
* return None from resolve commands when nothing is found
* return lbry files with claims that are abandoned
* unhelpful error messages in `publish` and `channel_new`
## [0.9.2rc9] - 2017-04-08 ## [0.9.2rc9] - 2017-04-08
### Added ### Added

View file

@ -1,6 +1,6 @@
import logging import logging
__version__ = "0.9.2rc21" __version__ = "0.9.2rc22"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler()) logging.getLogger(__name__).addHandler(logging.NullHandler())