version 0.17.4

This commit is contained in:
Kovid Goyal 2020-05-09 10:48:21 +05:30
parent 4f4d562670
commit 3d32202b3a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ Changelog
To update |kitty|, :doc:`follow the instructions <binary>`.
0.17.4 [future]
0.17.4 [2020-05-09]
--------------------
- Allow showing the name of the current layout and the number of windows

View File

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