From 0b2f081d40ab9d179327a00c2ae6fc707809b8f0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Mar 2026 08:26:12 +0530 Subject: [PATCH] version 0.46.0 --- 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 bce640f65..d1dab1e29 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -150,7 +150,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.46.0 [future] +0.46.0 [2026-03-11] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Pixel scrolling for the kitty scrollback buffer controlled via :opt:`pixel_scroll` (:pull:`9330`) diff --git a/kitty/constants.py b/kitty/constants.py index 1e3e6d71d..9b6a07380 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, 45, 0) +version: Version = Version(0, 46, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat