From b6254e4a67dbfc87cd928f872143a058a6aa9a06 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 4 Jan 2022 08:21:17 +0530 Subject: [PATCH] version 0.24.0 --- docs/changelog.rst | 6 +++--- kitty/constants.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index c86f18531..6acc682f4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -73,7 +73,7 @@ command. Detailed list of changes ------------------------------------- -0.24.0 [future] +0.24.0 [2022-01-04] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Integrate kitty closely with common shells such as zsh, fish and bash. @@ -109,8 +109,8 @@ Detailed list of changes - Add support for reporting mouse events with pixel co-ordinates using the ``SGR_PIXEL_PROTOCOL`` introduced in xterm 359 -- When programs ask to read from the clipboard prompt the user to allow - the request by default instead of denying by default. See +- When programs ask to read from the clipboard prompt, ask the user to allow + the request by default instead of denying it by default. See :opt:`clipboard_control` for details (:iss:`4022`) - A new mappable action ``swap_with_window`` to swap the current window with another window in the tab, visually diff --git a/kitty/constants.py b/kitty/constants.py index cbd0d5963..f2d93163e 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, 23, 1) +version: Version = Version(0, 24, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat