version 0.47.2

This commit is contained in:
Kovid Goyal
2026-06-07 09:37:24 +05:30
parent 314899b9aa
commit 83c1113dca
2 changed files with 2 additions and 2 deletions

View File

@@ -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`)

View File

@@ -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