From 04807453ecf4a15ef2d49485d619410b2c25151c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Jan 2022 10:40:59 +0530 Subject: [PATCH] version 0.24.1 --- 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 e2c36b662d8..95e2648a912 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -73,7 +73,7 @@ command. Detailed list of changes ------------------------------------- -0.24.1 [future] +0.24.1 [2022-01-06] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Shell integration: Work around conflicts with some zsh plugins (:iss:`4428`) diff --git a/kitty/constants.py b/kitty/constants.py index f2d93163efb..a49edcb5e62 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, 24, 0) +version: Version = Version(0, 24, 1) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat