From fbccfb9d0d3f0368ec59e8ea0362e8258b5e9541 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 19 Jan 2019 14:06:53 +0530 Subject: [PATCH] version 0.13.3 --- 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 f24510754db..b0bb93a071c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,11 +3,11 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. -0.13.3 [future] +0.13.3 [2019-01-19] ------------------------------ - icat kitten: Add a ``--stdin`` option to control if image data is read from - stdin (:iss:`1308`) + STDIN (:iss:`1308`) - hints kitten: Start hints numbering at one instead of zero by default. Added an option ``--hints-offset`` to control it. (:iss:`1289`) diff --git a/kitty/constants.py b/kitty/constants.py index 3157e2bf50b..7f586996a79 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ from collections import namedtuple appname = 'kitty' -version = (0, 13, 2) +version = (0, 13, 3) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat