From 90ed5959de1a48b5775924ad50686c2ec86aa730 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 3 Mar 2022 10:54:01 +0530 Subject: [PATCH] version 0.24.4 --- docs/changelog.rst | 10 +++++++--- kitty/constants.py | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index afa4537879a..794f00bcf71 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -75,14 +75,18 @@ command. Detailed list of changes ------------------------------------- -0.24.4 [future] +0.24.4 [2022-03-03] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Shell integration: Fix the default bash :code:`$HISTFILE` changing to :file:`~/.sh_history` instead of :file:`~/.bash_history` (:iss:`4765`) +- Shell integration: Fix the default Bash :code:`$HISTFILE` changing to :file:`~/.sh_history` instead of :file:`~/.bash_history` (:iss:`4765`) - Linux binaries: Fix binaries not working on systems with older Wayland client libraries (:iss:`4760`) -- Fix a regression in the previous release that broke kittens launched with STDIN not being a terminal (:iss:`4763`) +- Fix a regression in the previous release that broke kittens launched with :code:`STDIN` not connected to a terminal (:iss:`4763`) + +- Wayland: Fix surface configure events not being acknowledged before commit + the resized buffer (:pull:`4768`) + 0.24.3 [2022-02-28] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/kitty/constants.py b/kitty/constants.py index 5e7faa4f5d8..e89df1fca75 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -22,7 +22,7 @@ class Version(NamedTuple): appname: str = 'kitty' kitty_face = '🐱' -version: Version = Version(0, 24, 3) +version: Version = Version(0, 24, 4) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat