diff --git a/docs/changelog.rst b/docs/changelog.rst index 397fac86f..b6bb278b0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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`) diff --git a/kitty/constants.py b/kitty/constants.py index 1507cc76d..bf881b609 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ import sys 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