From 4f050245501d6cac048f61efae8a8739eb6f4dd0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 1 Sep 2018 09:16:29 +0530 Subject: [PATCH] version 0.12.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 1bd76f616..4177fd687 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.0 [future] +0.12.0 [2018-09-01] ------------------------------ - Preserve the mouse selection even when the contents of the screen are diff --git a/kitty/constants.py b/kitty/constants.py index 3abeab873..187ed6648 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -9,7 +9,7 @@ from collections import namedtuple appname = 'kitty' -version = (0, 11, 3) +version = (0, 12, 0) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat