version 0.46.2

This commit is contained in:
Kovid Goyal 2026-03-21 06:36:04 +05:30
parent c57305addc
commit 4483a6c110
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View file

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

View file

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