diff options
author | qutebrowser bot <bot@qutebrowser.org> | 2024-12-14 20:51:45 +0000 |
---|---|---|
committer | qutebrowser bot <bot@qutebrowser.org> | 2024-12-14 20:51:45 +0000 |
commit | 5c899e304f1056a2a4c542cc564c3a01bebae53d (patch) | |
tree | 81f42119698d5ae37cd3c388b48f4397be2425b6 | |
parent | 5a153d76ea70d4e8192b89a7d42518738d7f095a (diff) | |
download | qutebrowser-3.4.0.tar.gz qutebrowser-3.4.0.zip |
Release v3.4.0v3.4.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | doc/changelog.asciidoc | 2 | ||||
-rw-r--r-- | misc/org.qutebrowser.qutebrowser.appdata.xml | 1 | ||||
-rw-r--r-- | qutebrowser/__init__.py | 2 |
4 files changed, 4 insertions, 3 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 11288aa7e..0d35dbf22 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.1 +current_version = 3.4.0 commit = True message = Release v{new_version} tag = True diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index 5ae3fecb9..a05274ec1 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.4.0]] -v3.4.0 (unreleased) +v3.4.0 (2024-12-14) ------------------- Removed diff --git a/misc/org.qutebrowser.qutebrowser.appdata.xml b/misc/org.qutebrowser.qutebrowser.appdata.xml index 448332961..1fcc18cbe 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.4.0" date="2024-12-14"/> <release version="3.3.1" date="2024-10-12"/> <release version="3.3.0" date="2024-10-12"/> <release version="3.2.1" date="2024-06-25"/> diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py index c2d292209..c2dc1c775 100644 --- a/qutebrowser/__init__.py +++ b/qutebrowser/__init__.py @@ -14,7 +14,7 @@ __copyright__ = "Copyright 2013-{} Florian Bruhin (The Compiler)".format(_year) __license__ = "GPL" __maintainer__ = __author__ __email__ = "mail@qutebrowser.org" -__version__ = "3.3.1" +__version__ = "3.4.0" __version_info__ = tuple(int(part) for part in __version__.split('.')) __description__ = "A keyboard-driven, vim-like browser based on Python and Qt." |