version 0.13.0

This commit is contained in:
Kovid Goyal 2018-12-05 14:21:26 +05:30
parent 3fa7007e91
commit 460c353898
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
0.13.0 [future]
0.13.0 [2018-12-05]
------------------------------
- Add an option :opt:`scrollback_pager_history_size` to tell kitty to store
@ -41,7 +41,7 @@ Changelog
- Fix incorrect key repeat rate on wayland (:pull:`1055`)
- macOS: Fix drag and drop of files not working on mojave (:iss:`1058`)
- macOS: Fix drag and drop of files not working on Mojave (:iss:`1058`)
- macOS: Fix IME input for East Asian languages (:iss:`910`)

View file

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