diff --git a/.bumpversion.toml b/.bumpversion.toml index 51524959d..a2e463db9 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "3.4.0" +current_version = "3.5.0" commit = true message = "Release v{new_version}" tag = true diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index 8ce0eb020..b51a43cdd 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.5.0]] -v3.5.0 (unreleased) +v3.5.0 (2025-04-12) ------------------- Changed diff --git a/misc/org.qutebrowser.qutebrowser.appdata.xml b/misc/org.qutebrowser.qutebrowser.appdata.xml index 1fcc18cbe..636ceae1d 100644 --- a/misc/org.qutebrowser.qutebrowser.appdata.xml +++ b/misc/org.qutebrowser.qutebrowser.appdata.xml @@ -44,6 +44,7 @@ + diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py index 66e4cda81..85b5db5db 100644 --- a/qutebrowser/__init__.py +++ b/qutebrowser/__init__.py @@ -14,7 +14,7 @@ __copyright__ = "Copyright 2013-{} Florian Bruhin (The Compiler)".format(_year) __license__ = "GPL-3.0-or-later" __maintainer__ = __author__ __email__ = "mail@qutebrowser.org" -__version__ = "3.4.0" +__version__ = "3.5.0" __version_info__ = tuple(int(part) for part in __version__.split('.')) __description__ = "A keyboard-driven, vim-like browser based on Python and Qt."