summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-11-28 10:51:29 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-11-28 10:51:29 +0100
commita90a8941776995c8bd1e7ce5e52f8358bd92f961 (patch)
tree981c76d3d5260e79bd701586a3620f22896db985
parentce305b0fedcc634266083ba584da24a151a31ded (diff)
downloadqutebrowser-1.0.4.tar.gz
qutebrowser-1.0.4.zip
Release v1.0.4v1.0.4
-rw-r--r--doc/changelog.asciidoc13
-rw-r--r--qutebrowser/__init__.py2
2 files changed, 14 insertions, 1 deletions
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."