From 4483a6c110275d5603e48337ba533a322781efe2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 21 Mar 2026 06:36:04 +0530 Subject: [PATCH] version 0.46.2 --- docs/changelog.rst | 2 +- kitty/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index be07f9d34..d5285bb1a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -165,7 +165,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.47.0 [future] +0.46.2 [2026-03-21] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Watchers: Add an `on_quit` event to global watchers (:iss:`9675`) diff --git a/kitty/constants.py b/kitty/constants.py index 6ce35381a..fcc688fb4 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -22,7 +22,7 @@ class Version(NamedTuple): appname: str = 'kitty' kitty_face = '🐱' -version: Version = Version(0, 46, 1) +version: Version = Version(0, 46, 2) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat