Skip to content

Commit

Permalink
version 0.24.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Mar 3, 2022
1 parent d999cc4 commit 90ed595
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion kitty/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 90ed595

Please sign in to comment.