version 0.20.0

Fixes #3248
Fixes #3287
This commit is contained in:
Kovid Goyal 2021-04-19 10:14:00 +05:30
parent 9a2b0b6995
commit c9cc425aad
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 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.20.0 [future]
0.20.0 [2021-04-19]
----------------------
- Support display of animated images ``kitty +kitten icat animation.gif``. See

View File

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