From b15e047a47b9d98a8ad7916e8bb77cb2714bc76d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 12 Jun 2026 09:57:55 +0530 Subject: [PATCH] version 0.47.3 --- 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 e7c4cf3c7..9f24b8bb8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -173,7 +173,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.50.0 [future] +0.47.3 [2026-06-12] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - macOS: Show a key symbol on the active tab if the macOS Secure Input feature is enabled diff --git a/kitty/constants.py b/kitty/constants.py index c5b9061f2..1cf04bd2f 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, 47, 2) +version: Version = Version(0, 47, 3) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat