Parse __version__ from/to qutebrowser/__init__.py directly

This commit is contained in:
Andy Mender 2018-10-06 21:00:36 +02:00
parent eae9cd30af
commit 931b092653
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.1
current_version = 1.5.0
commit = True
tag = True
tag_name = v{new_version}

View File

@ -26,7 +26,7 @@ __copyright__ = "Copyright 2014-2018 Florian Bruhin (The Compiler)"
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"
__version__ = "1.5.1"
__version__ = "1.5.0"
# __version__ = config['bumpversion']['current_version']
__version_info__ = __version__.split('.')
__description__ = "A keyboard-driven, vim-like browser based on PyQt5."