From 8feccdf63fffaca653d366fb06dd72ed649bf56b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Jan 2019 09:26:51 +0530 Subject: [PATCH] version 0.13.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 cdb34ee87..d0bae94c0 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.13.2 [future] +0.13.2 [2019-01-04] ------------------------------ - Add a new option :opt:`tab_title_template` to control how tab titles diff --git a/kitty/constants.py b/kitty/constants.py index db11c4f03..3157e2bf5 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ import sys from collections import namedtuple appname = 'kitty' -version = (0, 13, 1) +version = (0, 13, 2) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat