From 00fe963e7c1c278b536d7e14087c2e4bd0f0d8be Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 May 2019 11:52:46 +0530 Subject: [PATCH] version 0.14.0 --- 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 0be51e94b..532a7ad53 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,7 +4,7 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.14.0 [future] +0.14.0 [2019-05-24] --------------------- - macOS: The default behavior of the Option key has changed. It now generates diff --git a/kitty/constants.py b/kitty/constants.py index 04859d937..b4b7edbf2 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ from collections import namedtuple appname = 'kitty' -version = (0, 13, 3) +version = (0, 14, 0) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat