version 0.22.0

This commit is contained in:
Kovid Goyal 2021-07-26 13:57:09 +05:30
parent 419cf78984
commit 887347106d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ Changelog
|kitty| is a feature-rich, cross-platform, *fast*, GPU based terminal.
To update |kitty|, :doc:`follow the instructions <binary>`.
0.21.3 [future]
0.22.0 [2021-07-26]
----------------------
- Add a new :ref:`action-toggle_layout` action to easily zoom/unzoom a window

View File

@ -635,7 +635,7 @@ data and has no gap, so its gap must be set using this control code.
Composing animation frames
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. versionadded:: 0.21.3
.. versionadded:: 0.22.0
Support for frame composition
Clients can *compose* animation frames, this means that they can compose pixels

View File

@ -23,7 +23,7 @@ class Version(NamedTuple):
appname: str = 'kitty'
kitty_face = '🐱'
version: Version = Version(0, 21, 2)
version: Version = Version(0, 22, 0)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat