version 0.12.2

This commit is contained in:
Kovid Goyal 2018-09-24 05:26:11 +05:30
parent 1eb8d6e845
commit 3a4420f2d3
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.12.2 [future]
0.12.2 [2018-09-24]
------------------------------
- A new ``last_used_layout`` function that can be mapped to a shortcut to

View File

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