From 13e59df1f8a7d54acee366830f0249ae76cdf4c0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 Aug 2021 08:20:01 +0530 Subject: [PATCH] version 0.22.2 --- docs/changelog.rst | 11 +++++++++++ kitty/constants.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 76f9d686b..56f55eac4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,17 @@ Changelog |kitty| is a feature-rich, cross-platform, *fast*, GPU based terminal. To update |kitty|, :doc:`follow the instructions `. +0.22.2 [2021-08-02] +---------------------- + +- macOS: Fix a long standing bug that could cause kitty windows to stop + updating, that got worse in the previous release (:iss:`3890` and + :iss:`2016`) + +- Wayland: A better fix for compositors like sway that can toggle client side + decorations on and off (:iss:`3888`) + + 0.22.1 [2021-07-31] ---------------------- diff --git a/kitty/constants.py b/kitty/constants.py index 6732d1945..5ce63432d 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -23,7 +23,7 @@ class Version(NamedTuple): appname: str = 'kitty' kitty_face = '🐱' -version: Version = Version(0, 22, 1) +version: Version = Version(0, 22, 2) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat