From ec3998a9b89c32b462f3f0de582f5a0b48d5e942 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 28 Jul 2020 14:01:16 +0530 Subject: [PATCH] version 0.18.2 --- docs/changelog.rst | 4 +--- kitty/constants.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 54778bbc8..2474708c3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,7 +4,7 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.18.2 [future] +0.18.2 [2020-07-28] -------------------- - X11: Improve handling of multiple keyboards. Now pressing a modifier key in @@ -41,8 +41,6 @@ To update |kitty|, :doc:`follow the instructions `. :option:`kitty --single-instance` using the :option:`kitty --override` command line argument (:iss:`2806`) -- Wayland: Fix a crash when using animated mouse cursors (:iss:`2810`) - - Fix the CSI J (Erase in display ED) escape code not removing line continued markers (:iss:`2809`) diff --git a/kitty/constants.py b/kitty/constants.py index 518b99a65..266e98287 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -20,7 +20,7 @@ class Version(NamedTuple): appname: str = 'kitty' -version: Version = Version(0, 18, 1) +version: Version = Version(0, 18, 2) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat