diff --git a/docs/changelog.rst b/docs/changelog.rst index d0c796bc616..4af0460fd85 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.11.2 [future] +0.11.2 [2018-07-01] ------------------------------ - Linux: Allow using XKB key names to bind shortcuts to keys not supported by GLFW (:pull:`665`) @@ -36,6 +36,9 @@ Changelog - Support "-T" as an alias for "--title" (:pull:`659`) +- Fix a regression in the previous release that broke using :option:`kitty + --debug-config` with custom key mappings (:iss:`695`) + 0.11.1 [2018-06-17] ------------------------------ diff --git a/kitty/constants.py b/kitty/constants.py index 8f364c3ebcd..99dda63e8b0 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -10,7 +10,7 @@ from .fast_data_types import set_boss as set_c_boss appname = 'kitty' -version = (0, 11, 1) +version = (0, 11, 2) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat