From 17e4995e93183d9e8c4c4bfa183632c02602881f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 7 Feb 2023 16:07:59 +0530 Subject: [PATCH] version 0.27.1 --- docs/changelog.rst | 9 +++++---- kitty/constants.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9e2bd892d59..418a7dff3d5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -35,7 +35,7 @@ mouse anywhere in the current command to move the cursor there. See Detailed list of changes ------------------------------------- -0.27.1 [future] +0.27.1 [2023-02-07] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Fix :opt:`modify_font` not working for strikethrough position (:iss:`5946`) @@ -43,15 +43,16 @@ Detailed list of changes - Fix a regression causing the ``edit-in-kitty`` command not working if :file:`kitten` is not added to PATH (:iss:`5956`) -- icat kitten: Fix a regression that broke display of animated GIFs over SSH - (:iss:`5958`) +- icat kitten: Fix a regression that broke display of animated GIFs over SSH (:iss:`5958`) - Wayland GNOME: Fix for ibus not working when using XWayland (:iss:`5967`) -- Fix regression in previous release that caused incorrect entries in terminfo for the modifer+F3 key combinations (:pull:`5970`) +- Fix regression in previous release that caused incorrect entries in terminfo for modifier+F3 key combinations (:pull:`5970`) - Bring back the deprecated and removed ``kitty +complete`` and delegate it to :program:`kitten` for backward compatibility (:pull:`5977`) +- Bump the version of Go needed to build kitty to ``1.20`` so we can use the Go stdlib ecdh package for crypto. + 0.27.0 [2023-01-31] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/kitty/constants.py b/kitty/constants.py index 711c1e4ceeb..c2dd450a07d 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, 27, 0) +version: Version = Version(0, 27, 1) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat