version 0.12.0

This commit is contained in:
Kovid Goyal
2018-09-01 09:16:29 +05:30
parent 4d2d9d5574
commit 4f05024550
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.12.0 [future] 0.12.0 [2018-09-01]
------------------------------ ------------------------------
- Preserve the mouse selection even when the contents of the screen are - Preserve the mouse selection even when the contents of the screen are

View File

@@ -9,7 +9,7 @@ from collections import namedtuple
appname = 'kitty' appname = 'kitty'
version = (0, 11, 3) version = (0, 12, 0)
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