From b0d34b136f2bb6bf80c23c219132aaaf82219c26 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 29 Sep 2018 09:15:40 +0530 Subject: [PATCH] version 0.12.3 --- 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 b8a4631c265..e1eb407da3b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,7 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. -0.12.3 [future] +0.12.3 [2018-09-29] ------------------------------ - macOS: Fix kitty window not being rendered on macOS Mojave until the window is diff --git a/kitty/constants.py b/kitty/constants.py index 8971184caf9..abefeb8984f 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -9,7 +9,7 @@ appname = 'kitty' -version = (0, 12, 2) +version = (0, 12, 3) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat