summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorqutebrowser bot <bot@qutebrowser.org>2023-10-19 18:15:42 +0000
committerqutebrowser bot <bot@qutebrowser.org>2023-10-19 18:15:42 +0000
commitb3b1384037f0717a1905c67c69b887034345221c (patch)
treeacc8c5b9e60fd124ea099bb5875993d94fb851c4
parent6cc22116551c7b6fb67585e50a0d9add0f3b45d0 (diff)
downloadqutebrowser-b3b1384037f0717a1905c67c69b887034345221c.tar.gz
qutebrowser-b3b1384037f0717a1905c67c69b887034345221c.zip
Release v3.0.1v3.0.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 fcaf46306..8b83ca8bf 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 3.0.0
+current_version = 3.0.1
commit = True
message = Release v{new_version}
tag = True
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index 774ba3a18..58fdc524e 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -16,7 +16,7 @@ breaking changes (such as renamed commands) can happen in minor releases.
// `Security` to invite users to upgrade in case of vulnerabilities.
[[v3.0.1]]
-v3.0.1 (unreleased)
+v3.0.1 (2023-10-19)
-------------------
Fixed
diff --git a/misc/org.qutebrowser.qutebrowser.appdata.xml b/misc/org.qutebrowser.qutebrowser.appdata.xml
index c3447c8da..6dabaa36b 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="3.0.1" date="2023-10-19"/>
<release version="3.0.0" date="2023-08-18"/>
<release version="2.5.4" date="2023-03-13"/>
<release version="2.5.3" date="2023-02-17"/>
diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py
index efdf91b3e..6a1a21806 100644
--- a/qutebrowser/__init__.py
+++ b/qutebrowser/__init__.py
@@ -11,7 +11,7 @@ __copyright__ = "Copyright 2014-2021 Florian Bruhin (The Compiler)"
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"
-__version__ = "3.0.0"
+__version__ = "3.0.1"
__version_info__ = tuple(int(part) for part in __version__.split('.'))
__description__ = "A keyboard-driven, vim-like browser based on Python and Qt."