summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-10-17 07:41:15 +0200
committerFlorian Bruhin <git@the-compiler.org>2017-10-17 07:44:14 +0200
commit55a88ceea674fdfaf5577c255bc704e41e3353a3 (patch)
treefbeda515ed78f3aff8f1a94e1d0e8fa8d759c23c
parentd4bf04d2c824a55b89e01ccb504fff995d4a1109 (diff)
downloadqutebrowser-1.0.2.tar.gz
qutebrowser-1.0.2.zip
Release v1.0.2v1.0.2
-rw-r--r--doc/changelog.asciidoc10
-rw-r--r--qutebrowser/__init__.py2
2 files changed, 7 insertions, 5 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index fa6f7a765..d748b30ac 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -15,15 +15,17 @@ 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.2 (unreleased)
--------------------
+v1.0.2
+------
Fixes
~~~~~
-- Fixed workaround for black screens with Nvidia cards
-- Mark the content.notifications setting as QtWebKit only correctly
+- Fix workaround for black screens or crashes with Nvidia cards
- Handle a filesystem going read-only gracefully
+- Fix crash when setting `fonts.monospace`
+- Fix list options not being modifyable via `.append()` in `config.py`
+- Mark the content.notifications setting as QtWebKit only correctly
- Fix wrong rendering of keys like `<back>` in the completion
Changed
diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py
index 0061e755b..a0da19248 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, 1)
+__version_info__ = (1, 0, 2)
__version__ = '.'.join(str(e) for e in __version_info__)
__description__ = "A keyboard-driven, vim-like browser based on PyQt5."