diff --git a/docs/changelog.rst b/docs/changelog.rst index bc19a0518..89c8cf8b4 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 2ff73f7d2..64d5a1d9f 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