version 0.40.0

This commit is contained in:
Kovid Goyal 2025-03-08 08:40:40 +05:30
parent 4d27b4766e
commit 6329206a6e
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ consumption to do the same tasks.
Detailed list of changes
-------------------------------------
0.40.0 [future]
0.40.0 [2025-03-08]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- :doc:`Allow terminal programs to use text in different font sizes <text-sizing-protocol>` (:iss:`8226`)

View file

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