From 3d32202b3ac1d251fcf8eb6e5ddc1e443fda8a72 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 9 May 2020 10:48:21 +0530 Subject: [PATCH] version 0.17.4 --- docs/changelog.rst | 2 +- kitty/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 55d8fc11f..a5bc6f6b1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,7 +5,7 @@ Changelog To update |kitty|, :doc:`follow the instructions `. -0.17.4 [future] +0.17.4 [2020-05-09] -------------------- - Allow showing the name of the current layout and the number of windows diff --git a/kitty/constants.py b/kitty/constants.py index 87c77884e..1cefe31aa 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -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