From 3a4420f2d3e6c26133c44a023287997fe54f08cd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 24 Sep 2018 05:26:11 +0530 Subject: [PATCH] version 0.12.2 --- 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 0cc7c257c..936db78b9 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.2 [future] +0.12.2 [2018-09-24] ------------------------------ - A new ``last_used_layout`` function that can be mapped to a shortcut to diff --git a/kitty/constants.py b/kitty/constants.py index 6ffffba30..8971184ca 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -9,7 +9,7 @@ from collections import namedtuple appname = 'kitty' -version = (0, 12, 1) +version = (0, 12, 2) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat