diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 50cad0df2..a549d6253 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -28,6 +28,17 @@ Changed - `:tab-focus` can now take a negative index to focus the nth tab counted from the right. +v0.6.1 +----- + +Fixed +~~~~~~ + +- Fixed broken cheatsheet image which was missing from package +- Fixed occasional crash when switching/disconnecting monitors +- Fixed crash when downloading non-ascii files with a broken locale (`LC_ALL=C`) +- Added workaround for a Qt/PyQt bug which is too weird to describe here + v0.6.0 ------ diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py index a88ee48bf..ad5c8a4d4 100644 --- a/qutebrowser/__init__.py +++ b/qutebrowser/__init__.py @@ -28,7 +28,7 @@ __copyright__ = "Copyright 2014-2016 Florian Bruhin (The Compiler)" __license__ = "GPL" __maintainer__ = __author__ __email__ = "mail@qutebrowser.org" -__version_info__ = (0, 6, 0) +__version_info__ = (0, 6, 1) __version__ = '.'.join(str(e) for e in __version_info__) __description__ = "A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit." diff --git a/tests/unit/config/test_config.py b/tests/unit/config/test_config.py index adcd1a625..5d831e15e 100644 --- a/tests/unit/config/test_config.py +++ b/tests/unit/config/test_config.py @@ -321,7 +321,7 @@ class TestDefaultConfig: If it did change, place a new qutebrowser-vx.y.z.conf in old_configs and then increment the version. """ - assert qutebrowser.__version__ == '0.6.0' + assert qutebrowser.__version__ == '0.6.1' @pytest.mark.parametrize('filename', os.listdir(os.path.join(os.path.dirname(__file__), 'old_configs')),