From c8142a2fb2904b8d2e9b3a966b0bc4595170e3f7 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Tue, 23 May 2017 16:19:57 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.3rc5=20=E2=86=92=200.10.?= =?UTF-8?q?3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 34 ++++++++++++++++++++++++---------- lbrynet/__init__.py | 2 +- 3 files changed, 26 insertions(+), 12 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 667d033b8..3ca4a57bc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.3rc5 +current_version = 0.10.3 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 35a774df1..5de1f3825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,22 +9,15 @@ at anytime. ## [Unreleased] ### Added - * Add decorator to support queueing api calls - * Added force option to API command resolve + * + * ### Changed * * - * Added optional `address` and `include_unconfirmed` params to `jsonrpc_wallet_balance` method - * Wait for subscriptions before announcing wallet has finished starting - * Cache claims in wallet storage for use looking claims up by id or outpoint - * Try to use cached claim info for `file_list` - * Convert wallet storage to inlinecallbacks - * Improve internal name_metadata sqlite table - ### Fixed - * Fix race condition in publish that resulted in claims being rejected when making many publishes concurrently + * * ### Deprecated @@ -35,6 +28,27 @@ at anytime. * * +## [0.10.3] - 2017-05-23 + +### Added + * Add decorator to support queueing api calls + * Added force option to API command resolve + + +### Changed + * Added optional `address` and `include_unconfirmed` params to `jsonrpc_wallet_balance` method + * Wait for subscriptions before announcing wallet has finished starting + * Cache claims in wallet storage for use looking claims up by id or outpoint + * Try to use cached claim info for `file_list` + * Convert wallet storage to inlinecallbacks + * Improve internal name_metadata sqlite table + + +### Fixed + * Fix race condition in publish that resulted in claims being rejected when making many publishes concurrently + + + ## [0.10.1] - 2017-05-03 ### Fixed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 222398db6..48a8f9e48 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.10.3rc5" +__version__ = "0.10.3" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())