From 6329206a6e03ac3ffa26fd13b5bb90f8402604cb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 8 Mar 2025 08:40:40 +0530 Subject: [PATCH] version 0.40.0 --- docs/changelog.rst | 2 +- kitty/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2fd790fe8..c2e1dfeb6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 ` (:iss:`8226`) diff --git a/kitty/constants.py b/kitty/constants.py index c482a2d87..273337e07 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -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