From 3ce04c3e4bb9a7d783f309958706a87102ab641a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 19 Dec 2020 08:19:34 +0530 Subject: [PATCH] version 0.19.3 --- docs/changelog.rst | 4 +++- kitty/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index c8a02c78d..cc550b6e4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,9 +4,11 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.19.3 [future] +0.19.3 [2020-12-19] ------------------- +- Happy holidays to all kitty users! + - A new :doc:`broadcast ` kitten to type in all kitty windows simultaneously (:iss:`1569`) diff --git a/kitty/constants.py b/kitty/constants.py index 4b241ce26..f741fd3bb 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -20,7 +20,7 @@ class Version(NamedTuple): appname: str = 'kitty' -version: Version = Version(0, 19, 2) +version: Version = Version(0, 19, 3) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat