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())