version 0.43.0

This commit is contained in:
Kovid Goyal
2025-09-28 09:54:43 +05:30
parent 30f7ed76c1
commit 99a5f6bd5f
2 changed files with 2 additions and 2 deletions

View File

@@ -134,7 +134,7 @@ consumption to do the same tasks.
Detailed list of changes
-------------------------------------
0.43.0 [future]
0.43.0 [2025-09-28]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- New support for creating and switching to :doc:`sessions` easily, allowing

View File

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