From 1ba7b5f5a31c0fac2ff2a4921326181ec9b81329 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Dec 2018 13:23:33 +0530 Subject: [PATCH] version 0.13.1 --- 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 f709478f6..992e716fc 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.1 [2018-12-05] +0.13.1 [2018-12-06] ------------------------------ - Fix passing input via the pipe action to a program without a window not diff --git a/kitty/constants.py b/kitty/constants.py index bf881b609..db11c4f03 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ import sys from collections import namedtuple appname = 'kitty' -version = (0, 13, 0) +version = (0, 13, 1) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat