From 6fa4110da902a776a56ccd44dbdabee83c9d8760 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 3 Feb 2022 11:44:12 +0530 Subject: [PATCH] version 0.24.2 --- 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 1fd0b141c..a015af124 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -75,7 +75,7 @@ command. Detailed list of changes ------------------------------------- -0.24.2 [future] +0.24.2 [2022-02-03] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - macOS: Allow opening text files, images and directories with kitty when diff --git a/kitty/constants.py b/kitty/constants.py index a49edcb5e..87ee844f0 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, 1) +version: Version = Version(0, 24, 2) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat