Skip to content

Commit

Permalink
Release v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Jan 13, 2017
1 parent 792f9f7 commit 65852b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qutebrowser/__init__.py
Expand Up @@ -28,7 +28,7 @@
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"
__version_info__ = (0, 9, 0)
__version_info__ = (0, 9, 1)
__version__ = '.'.join(str(e) for e in __version_info__)
__description__ = "A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit."

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/config/test_config.py
Expand Up @@ -403,7 +403,7 @@ def test_upgrade_version(self):
If it did change, place a new qutebrowser-vx.y.z.conf in old_configs
and then increment the version.
"""
assert qutebrowser.__version__ == '0.9.0'
assert qutebrowser.__version__ == '0.9.1'

@pytest.mark.parametrize('filename',
os.listdir(os.path.join(os.path.dirname(__file__), 'old_configs')),
Expand Down

0 comments on commit 65852b4

Please sign in to comment.