diff --git a/docs/changelog.rst b/docs/changelog.rst index e2c36b662..95e2648a9 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 f2d93163e..a49edcb5e 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