From 8bc611cc881bb0eb08d442b58da5d7fbc26e5828 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 1 Jun 2017 16:12:02 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.3production3=20=E2=86=92?= =?UTF-8?q?=200.10.3production4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 23 +++++++++++++++++------ lbrynet/__init__.py | 2 +- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2251e03e9..9e7fb9312 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.3production3 +current_version = 0.10.3production4 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 8b49539cb..ef0512d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,15 +9,12 @@ at anytime. ## [Unreleased] ### Added - * Prevent publish of files with size 0 - * Add `dht_status` parameter to `status` to include bandwidth and peer info * - * Positional and flag arguments in lbrynet-cli - * + * ### Changed - * Changed keyword arguments in lbrynet-cli to use a -- prefix - * Using the help function in lbrynet-cli no longer requires lbrynet-daemon to be running + * + * ### Fixed * @@ -31,6 +28,20 @@ at anytime. * * +## [0.10.3production4] - 2017-06-01 + +### Added + * Prevent publish of files with size 0 + * Add `dht_status` parameter to `status` to include bandwidth and peer info + * Positional and flag arguments in lbrynet-cli + + +### Changed + * Changed keyword arguments in lbrynet-cli to use a -- prefix + * Using the help function in lbrynet-cli no longer requires lbrynet-daemon to be running + + + ## [0.10.3production3] - 2017-05-30 ### Changed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 0deb1ff3d..036b8f673 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.10.3production3" +__version__ = "0.10.3production4" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())