summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-03-13 22:06:16 +0100
committerFlorian Bruhin <me@the-compiler.org>2023-03-13 22:07:16 +0100
commitda7bde4f1bff34775a27ea825e29d5e8b9c952c7 (patch)
tree717fefe4f3a23a4f43e4ae930931b840b183977e
parenta8d58a8b728b06a4bcf9789cbda29b26574e9bd7 (diff)
downloadqutebrowser-da7bde4f1bff34775a27ea825e29d5e8b9c952c7.tar.gz
qutebrowser-da7bde4f1bff34775a27ea825e29d5e8b9c952c7.zip
Release v2.5.4
-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 073f611d2..af19f0185 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 2.5.3
+current_version = 2.5.4
commit = True
message = Release v{new_version}
tag = True
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index 697ae26ea..e3825de20 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -121,7 +121,7 @@ Fixed
- Rare crash when running userscripts with crashed renderer processes.
[[v2.5.4]]
-v2.5.4 (unreleased)
+v2.5.4 (2023-03-13)
-------------------
Fixed
diff --git a/misc/org.qutebrowser.qutebrowser.appdata.xml b/misc/org.qutebrowser.qutebrowser.appdata.xml
index ef2c48f4f..e75709d0c 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="2.5.4" date="2023-03-13"/>
<release version="2.5.3" date="2023-02-17"/>
<release version="2.5.2" date="2022-06-22"/>
<release version="2.5.1" date="2022-05-26"/>
diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py
index 93110f086..ad65ac371 100644
--- a/qutebrowser/__init__.py
+++ b/qutebrowser/__init__.py
@@ -26,7 +26,7 @@ __copyright__ = "Copyright 2014-2021 Florian Bruhin (The Compiler)"
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"
-__version__ = "2.5.3"
+__version__ = "2.5.4"
__version_info__ = tuple(int(part) for part in __version__.split('.'))
__description__ = "A keyboard-driven, vim-like browser based on Python and Qt."