From cc29640604757248d91a9a7e01ebf602096ea888 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 23 Apr 2020 08:39:07 +0530 Subject: [PATCH] version 0.17.3 --- docs/changelog.rst | 4 ++-- kitty/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 185d152e1..fdb107fd3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,8 +4,8 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.17.3 [future] ------------------ +0.17.3 [2020-04-23] +-------------------- - Allow individually setting margins and padding for each edge (left, right, top, bottom). Margins can also be controlled per window via remote control diff --git a/kitty/constants.py b/kitty/constants.py index a63a00d9b..87c77884e 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -20,7 +20,7 @@ class Version(NamedTuple): appname: str = 'kitty' -version: Version = Version(0, 17, 2) +version: Version = Version(0, 17, 3) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat