diff --git a/docs/changelog.rst b/docs/changelog.rst index e8b69a058..37e4695cb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -75,7 +75,7 @@ command. Detailed list of changes ------------------------------------- -0.24.3 [future] +0.24.3 [2022-02-28] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Bash integration: No longer modify :file:`~/.bashrc` to load :ref:`shell integration `. diff --git a/kitty/constants.py b/kitty/constants.py index 87ee844f0..5e7faa4f5 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, 2) +version: Version = Version(0, 24, 3) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat