version 0.14.0

This commit is contained in:
Kovid Goyal
2019-05-24 11:52:46 +05:30
parent 009ea1c8cd
commit 00fe963e7c
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,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.
To update |kitty|, :doc:`follow the instructions <binary>`. To update |kitty|, :doc:`follow the instructions <binary>`.
0.14.0 [future] 0.14.0 [2019-05-24]
--------------------- ---------------------
- macOS: The default behavior of the Option key has changed. It now generates - macOS: The default behavior of the Option key has changed. It now generates

View File

@@ -8,7 +8,7 @@ import sys
from collections import namedtuple from collections import namedtuple
appname = 'kitty' appname = 'kitty'
version = (0, 13, 3) version = (0, 14, 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