From 44039baa39d0a038cca19b528bca15fc56abcaee Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 25 Sep 2024 09:34:28 +0530 Subject: [PATCH] version 0.36.3 --- 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 f336534c3..8ffe6de36 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -74,7 +74,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.36.3 [future] +0.36.3 [2024-09-25] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - The option ``second_transparent_bg`` has been removed and replaced by :opt:`transparent_background_colors` which allows setting up to seven additional colors that will be transparent, with individual opacities per color (:iss:`7646`) diff --git a/kitty/constants.py b/kitty/constants.py index d81375a78..058b3a265 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, 36, 2) +version: Version = Version(0, 36, 3) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat