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