diff --git a/docs/changelog.rst b/docs/changelog.rst index ab0a136e6b7..7e917d7b97c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,11 +4,14 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.18.0 [future] +0.18.0 [2020-06-20] -------------------- - Allow multiple overlay windows per normal window +- Add an option :opt:`confirm_os_window_close` to ask for confirmation + when closing an OS window with multiple kitty windows. + - Tall and Fat layouts: Add a ``mirrored`` option to put the full size window on the opposite edge of the screen (:iss:`2654`) @@ -25,9 +28,6 @@ To update |kitty|, :doc:`follow the instructions `. for the ``send_mouse_event`` function that can be used in kittens have been changed (see :ref:`send_mouse_event`). -- Add an option :opt:`confirm_os_window_close` to ask for confirmation - when closing an OS window with multiple kitty windows. - - Add a new mappable ``quit`` action to quit kitty completely. - Fix marks using different colors with regexes using only a single color @@ -49,7 +49,7 @@ To update |kitty|, :doc:`follow the instructions `. - X11: Reduce startup time by ~25% by only querying GLX for framebuffer configurations once (:iss:`2754`) -- macOS: Notarize the kitty application (:iss:`2040`) +- macOS: Notarize the kitty application bundle (:iss:`2040`) - Fix the kitty shell launched via a mapping needlessly requiring :opt:`allow_remote_control` to be turned on. diff --git a/kitty/constants.py b/kitty/constants.py index 1cefe31aab5..52bd98f7c4e 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -20,7 +20,7 @@ class Version(NamedTuple): appname: str = 'kitty' -version: Version = Version(0, 17, 4) +version: Version = Version(0, 18, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat