From d20fe4d4b5860b77f507317ac0bf39242725d1ae Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 7 Jun 2026 09:37:24 +0530 Subject: [PATCH] version 0.47.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 3967e7a09..76f20785c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -173,7 +173,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.47.2 [future] +0.47.2 [2026-06-07] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Allow dragging to move scrollbar after clicking on track when :opt:`scrollbar_jump_on_click` is enabled (:pull:`10085`) diff --git a/kitty/constants.py b/kitty/constants.py index 430dbcb96..c5b9061f2 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, 1) +version: Version = Version(0, 47, 2) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat