summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-02-15 14:17:18 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-02-15 14:17:18 +0100
commit7fef6a9c8080dbb6b2123f14614606bfe95005fa (patch)
tree07656af5b1f7344e11ab892c2bd38280f71eb220
parenta58110bad632dad3045c2b7f9ad219e4928ddd9c (diff)
downloadqutebrowser-7fef6a9c8080dbb6b2123f14614606bfe95005fa.tar.gz
qutebrowser-7fef6a9c8080dbb6b2123f14614606bfe95005fa.zip
Release v1.10.1v1.10.1
-rw-r--r--.bumpversion.cfg2
-rw-r--r--doc/changelog.asciidoc2
-rw-r--r--misc/org.qutebrowser.qutebrowser.appdata.xml1
-rw-r--r--qutebrowser/__init__.py2
4 files changed, 4 insertions, 3 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index c91a2de90..bac515da4 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 1.10.0
+current_version = 1.10.1
commit = True
message = Release v{new_version}
tag = True
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index af571de6c..7af22398d 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -15,7 +15,7 @@ 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.10.1 (unreleased)
+v1.10.1 (2020-02-15)
--------------------
Fixed
diff --git a/misc/org.qutebrowser.qutebrowser.appdata.xml b/misc/org.qutebrowser.qutebrowser.appdata.xml
index 4a52401e4..d7c8162c0 100644
--- a/misc/org.qutebrowser.qutebrowser.appdata.xml
+++ b/misc/org.qutebrowser.qutebrowser.appdata.xml
@@ -44,6 +44,7 @@
</content_rating>
<releases>
<!-- Add new releases here -->
+<release version="1.10.1" date="2020-02-15"/>
<release version="1.10.0" date="2020-02-02"/>
<release version="1.9.0" date="2020-01-08"/>
<release version="1.8.3" date="2019-12-05"/>
diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py
index 41d872d64..cb50504af 100644
--- a/qutebrowser/__init__.py
+++ b/qutebrowser/__init__.py
@@ -26,7 +26,7 @@ __copyright__ = "Copyright 2014-2020 Florian Bruhin (The Compiler)"
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"
-__version__ = "1.10.0"
+__version__ = "1.10.1"
__version_info__ = tuple(int(part) for part in __version__.split('.'))
__description__ = "A keyboard-driven, vim-like browser based on PyQt5."