From 7438e0e997e1d6e37e10276415112fc1978e41ae Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 8 Sep 2018 05:22:02 +0530 Subject: [PATCH] version 0.12.1 --- docs/changelog.rst | 5 ++++- kitty/constants.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index cf70ada08d6..d62704580b5 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.1 [future] +0.12.1 [2018-09-08] ------------------------------ - Add a new :option:`kitty --start-in-fullscreen` command line flag to start @@ -43,6 +43,9 @@ Changelog - Linux: Fix crash with some Nvidia drivers when creating tabs in the first top level-window after creating a second top-level window. (:iss:`873`) +- macOS: Diff kitten: Fix syntax highlighting not working because of + a bug in the 0.12.0 macOS package + 0.12.0 [2018-09-01] ------------------------------ diff --git a/kitty/constants.py b/kitty/constants.py index 187ed664821..6ffffba3045 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -9,7 +9,7 @@ appname = 'kitty' -version = (0, 12, 0) +version = (0, 12, 1) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat