version 0.13.2

This commit is contained in:
Kovid Goyal 2019-01-04 09:26:51 +05:30
parent ed905fcf6d
commit 8feccdf63f
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. |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 - Add a new option :opt:`tab_title_template` to control how tab titles

View File

@ -8,7 +8,7 @@ import sys
from collections import namedtuple from collections import namedtuple
appname = 'kitty' appname = 'kitty'
version = (0, 13, 1) version = (0, 13, 2)
str_version = '.'.join(map(str, version)) str_version = '.'.join(map(str, version))
_plat = sys.platform.lower() _plat = sys.platform.lower()
is_macos = 'darwin' in _plat is_macos = 'darwin' in _plat