Bump version: 0.9.0rc6 → 0.9.0rc7

This commit is contained in:
jobevers 2017-02-20 21:12:36 -06:00
parent 728fd0c00f
commit 0f60328d3c
3 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0rc6
current_version = 0.9.0rc7
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?
@ -13,7 +13,6 @@ values =
rc
production
[bumpversion:file:lbrynet/__init__.py]
[bumpversion:file:CHANGELOG.md]

View file

@ -8,6 +8,8 @@ can and probably will change functionality and break backwards compatability
at anytime.
## [Unreleased]
## [0.9.0rc7] - 2017-02-20
### Changed
* Remove unused upload_allowed option
* Remove code related to packaging as that step is now done in the electron client

View file

@ -1,6 +1,6 @@
import logging
__version__ = "0.9.0rc6"
__version__ = "0.9.0rc7"
version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler())