From 04f8cb6d30454758fdf07bda7e1d0119df0f0fb1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 12 Mar 2024 20:49:31 +0530 Subject: [PATCH] version 0.33.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 8246ac3aac3..8ae2cdd6834 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -47,7 +47,7 @@ rsync algorithm to speed up repeated transfers of large files. Detailed list of changes ------------------------------------- -0.33.0 [future] +0.33.0 [2024-03-12] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :ref:`Cheetah speed ` with a redesigned render loop and a 2x faster escape code diff --git a/kitty/constants.py b/kitty/constants.py index 1572faae6bc..31be4580197 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -22,7 +22,7 @@ class Version(NamedTuple): appname: str = 'kitty' kitty_face = '🐱' -version: Version = Version(0, 32, 2) +version: Version = Version(0, 33, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat