Bump version: 0.9.0rc8 → 0.9.0rc9

This commit is contained in:
jobevers 2017-02-22 12:51:10 -06:00
parent 056ee2d1ce
commit 9af1cae249
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.9.0rc8 current_version = 0.9.0rc9
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+))?
@ -14,3 +14,4 @@ values =
production production
[bumpversion:file:lbrynet/__init__.py] [bumpversion:file:lbrynet/__init__.py]

View file

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