From 96b09124009c10ed4e9735a33991d873c813ab24 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 17 Aug 2024 10:05:06 +0530 Subject: [PATCH] version 0.36.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 303beb57340..409df450b51 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.0 [future] +0.36.0 [2024-08-17] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Support `OpenType Variable fonts `__ (:iss:`3711`) diff --git a/kitty/constants.py b/kitty/constants.py index d5ff4fca34c..e6c3f50687e 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, 35, 2) +version: Version = Version(0, 36, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat