From 2725f384d942f0d7fed7e700d9542140d353ce47 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 15 Jun 2017 20:25:07 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.13.1rc2=20=E2=86=92=200.13.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 47 ++++++++++++++++++++++++++++++++------------- lbrynet/__init__.py | 2 +- 3 files changed, 36 insertions(+), 15 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 434d3d7e3..98db36c8d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.1rc2 +current_version = 0.13.1 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 1affe57cd..851316e07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,22 +9,15 @@ at anytime. ## [Unreleased] ### Added - * Add `claim_send_to_address` - * Add `change_address` argument to `publish` - * Add `unique_contacts` count to `status` response + * + * ### Changed - * Support resolution of multiple uris with `resolve`, all results are keyed by uri - * Add `error` responses for failed resolves - * Add `claim_list_by_channel`, supports multiple channel resolution - * Rename delete_target_file argument of delete API command to delete_from_download_dir - * Rename delete_all CLI flag -a to --delete_all + * + * ### Fixed - * Race condition from improper initialization and shutdown of the blob manager database - * Various fixes for GetStream class used in API command get - * Download analytics error - * Fixed flag options in file_delete API command + * * ### Deprecated @@ -32,8 +25,36 @@ at anytime. * ### Removed - * Remove `claims_in_channel` from `resolve` response * + * + +## [0.13.1] - 2017-06-15 + +### Added + * Add `claim_send_to_address` + * Add `change_address` argument to `publish` + * Add `unique_contacts` count to `status` response + + +### Changed + * Support resolution of multiple uris with `resolve`, all results are keyed by uri + * Add `error` responses for failed resolves + * Add `claim_list_by_channel`, supports multiple channel resolution + * Rename delete_target_file argument of delete API command to delete_from_download_dir + * Rename delete_all CLI flag -a to --delete_all + + +### Removed + * Remove `claims_in_channel` from `resolve` response + + +### Fixed + * Race condition from improper initialization and shutdown of the blob manager database + * Various fixes for GetStream class used in API command get + * Download analytics error + * Fixed flag options in file_delete API command + + ## [0.11.0] - 2017-06-09 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 7b1e493df..57c79dbf5 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.13.1rc2" +__version__ = "0.13.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())