Bump version: 0.10.3production3 → 0.10.3production4

This commit is contained in:
Jack Robison 2017-06-01 16:12:02 -04:00
parent 84bac4bab7
commit 8bc611cc88
3 changed files with 19 additions and 8 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.10.3production3 current_version = 0.10.3production4
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))? parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?

View file

@ -9,15 +9,12 @@ at anytime.
## [Unreleased] ## [Unreleased]
### Added ### 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
* 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 ### 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 ## [0.10.3production3] - 2017-05-30
### Changed ### Changed

View file

@ -1,6 +1,6 @@
import logging import logging
__version__ = "0.10.3production3" __version__ = "0.10.3production4"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler()) logging.getLogger(__name__).addHandler(logging.NullHandler())