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