version 0.38.1

This commit is contained in:
Kovid Goyal
2024-12-26 07:13:03 +05:30
parent 5a99f3b6cf
commit fa6ae712a3
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ consumption to do the same tasks.
Detailed list of changes
-------------------------------------
0.38.1 [future]
0.38.1 [2024-12-26]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- macOS: Fix a regression in the previous release that broke rendering of Emoji using the VS16 variation selector (:iss:`8130`)

View File

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