diff --git a/docs/changelog.rst b/docs/changelog.rst index afa453787..794f00bcf 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 5e7faa4f5..e89df1fca 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