From ffc4e9971766740c5fcd8b1db48d19bc847e6d8f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 23 Sep 2019 08:41:38 +0530 Subject: [PATCH] version 0.14.5 --- docs/changelog.rst | 4 ++-- kitty/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 943f05b69..e1d0abdfa 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,10 +4,10 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.14.5 [future] +0.14.5 [2019-09-23] --------------------- -- Implement a hack to (mostly) preserve tabs when cat a file with them and then +- Implement a hack to (mostly) preserve tabs when cat-ting a file with them and then copying the text or passing screen contents to another program (:iss:`1829`) - When all visible windows have the same background color, use that as the diff --git a/kitty/constants.py b/kitty/constants.py index 3b21ef8e5..9fba3a82a 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -9,7 +9,7 @@ from collections import namedtuple from contextlib import suppress appname = 'kitty' -version = (0, 14, 4) +version = (0, 14, 5) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat