From 350cfeb7ef28e2f5638410c23369a37db90d5176 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 25 Sep 2019 11:28:55 +0530 Subject: [PATCH] version 0.14.6 --- 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 460cb6778..d482ce7a2 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.6 [future] +0.14.6 [2019-09-25] --------------------- - macOS: Fix a regression in the previous release that caused a crash when diff --git a/kitty/constants.py b/kitty/constants.py index 9fba3a82a..abdc3f9c9 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, 5) +version = (0, 14, 6) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat