From 57f8519a5241b797c17352a4dec87562594ed603 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 10 Jul 2018 21:42:01 +0530 Subject: [PATCH] version 0.11.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 af34fa055..ec94ce389 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.11.3 [future] +0.11.3 [2018-07-10] ------------------------------ - Draw only the minimum borders needed for inactive windows. That is only the borders diff --git a/kitty/constants.py b/kitty/constants.py index 63381e46c..914d02e58 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -10,7 +10,7 @@ from collections import namedtuple from .fast_data_types import set_boss as set_c_boss appname = 'kitty' -version = (0, 11, 2) +version = (0, 11, 3) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat