version 0.38.0

This commit is contained in:
Kovid Goyal
2024-12-15 09:20:06 +05:30
parent 9d48fa9126
commit 79a07ee61c
2 changed files with 2 additions and 1 deletions

View File

@@ -113,6 +113,7 @@ Detailed list of changes
- hints/unicode_input kittens: Do not lose keypresses that are sent very rapidly via an automation tool immediately after the kitten is launched (:iss:`7089`)
0.37.0 [2024-10-30]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@@ -23,7 +23,7 @@ class Version(NamedTuple):
appname: str = 'kitty'
kitty_face = '🐱'
version: Version = Version(0, 37, 0)
version: Version = Version(0, 38, 0)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat