version 0.13.1

This commit is contained in:
Kovid Goyal 2018-12-06 13:23:33 +05:30
parent f895b7f8cb
commit 1ba7b5f5a3
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
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 @@
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