version 0.47.1

This commit is contained in:
Kovid Goyal 2026-05-28 09:51:42 +05:30
parent 51261c9fba
commit fb5255b1ae
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
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.1 [future]
0.47.1 [2026-05-28]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Fix a regression in the previous release that caused :ac:`copy_or_noop` to stop working correctly (:pull:`10041`)

View file

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