diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index c559c8ca2..722001ef8 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -120,8 +120,8 @@ Removed - The `x[xtb]` default bindings got removed again as many users accidentally triggered them. -v1.0.4 (unreleased) -------------------- +v1.0.4 +------ Fixed ~~~~~ @@ -131,6 +131,7 @@ Fixed - 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 ------ @@ -153,7 +154,6 @@ Fixed window - Unbinding a default keybinding twice now doesn't bind it again - Completions are now sorted correctly again when filtered -- Fix crash when setting content.cache.size to a big value (> 2 GB) v1.0.2 ------ 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."