From 2531c31d02930e992a2e0c429ccefc1cb8e52af8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 30 Oct 2024 21:34:51 +0530 Subject: [PATCH] version 0.37.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 bc19a0518cf..89c8cf8b493 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -84,7 +84,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.37.0 [future] +0.37.0 [2024-10-30] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - A new optional :opt:`text cursor movement animation ` that diff --git a/kitty/constants.py b/kitty/constants.py index 2ff73f7d2f9..64d5a1d9f62 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, 4) +version: Version = Version(0, 37, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat