version 0.13.1

This commit is contained in:
Kovid Goyal
2018-12-06 13:23:33 +05:30
parent f895b7f8cb
commit 1ba7b5f5a3
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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