From 4698910ab792e35f2d7ca228a6acd30e79014875 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Wed, 12 Apr 2017 15:23:08 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.2rc21=20=E2=86=92=200.9.2?= =?UTF-8?q?rc22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 38 ++++++++++++++++++++++++++------------ lbrynet/__init__.py | 2 +- 3 files changed, 28 insertions(+), 14 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 51d6cb89b..0aa9cf0a7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2rc21 +current_version = 0.9.2rc22 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 581a7f00f..c408cc89b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,21 +9,35 @@ at anytime. ## [Unreleased] ### 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.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 ### Added diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 7d622bb1e..d7b648247 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.9.2rc21" +__version__ = "0.9.2rc22" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())