From a90a8941776995c8bd1e7ce5e52f8358bd92f961 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 28 Nov 2017 10:51:29 +0100 Subject: Release v1.0.4 --- doc/changelog.asciidoc | 13 +++++++++++++ qutebrowser/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index fdb5c16b5..69eb8cb16 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -15,6 +15,19 @@ breaking changes (such as renamed commands) can happen in minor releases. // `Fixed` for any bug fixes. // `Security` to invite users to upgrade in case of vulnerabilities. +v1.0.4 +------ + +Fixed +~~~~~ + +- The `qute://gpl` page now works correctly again. +- Trying to bind an empty command now doesn't crash anymore. +- Fixed crash when `:config-write-py` fails to write to the given path. +- Fixed crash for some users when selecting a file with Qt 5.9.3 +- Improved handling for various SQL errors +- Fix crash when setting content.cache.size to a big value (> 2 GB) + v1.0.3 ------ diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py index 35385b03a..6859abedc 100644 --- a/qutebrowser/__init__.py +++ b/qutebrowser/__init__.py @@ -26,7 +26,7 @@ __copyright__ = "Copyright 2014-2017 Florian Bruhin (The Compiler)" __license__ = "GPL" __maintainer__ = __author__ __email__ = "mail@qutebrowser.org" -__version_info__ = (1, 0, 3) +__version_info__ = (1, 0, 4) __version__ = '.'.join(str(e) for e in __version_info__) __description__ = "A keyboard-driven, vim-like browser based on PyQt5." -- cgit v1.2.3-54-g00ecf