Skip to content

Commit

Permalink
version 0.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Feb 7, 2023
1 parent e161b5a commit 17e4995
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,24 @@ mouse anywhere in the current command to move the cursor there. See
Detailed list of changes
-------------------------------------

0.27.1 [future]
0.27.1 [2023-02-07]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Fix :opt:`modify_font` not working for strikethrough position (:iss:`5946`)

- Fix a regression causing the ``edit-in-kitty`` command not working if :file:`kitten` is not added
to PATH (:iss:`5956`)

- icat kitten: Fix a regression that broke display of animated GIFs over SSH
(:iss:`5958`)
- icat kitten: Fix a regression that broke display of animated GIFs over SSH (:iss:`5958`)

- Wayland GNOME: Fix for ibus not working when using XWayland (:iss:`5967`)

- Fix regression in previous release that caused incorrect entries in terminfo for the modifer+F3 key combinations (:pull:`5970`)
- Fix regression in previous release that caused incorrect entries in terminfo for modifier+F3 key combinations (:pull:`5970`)

- Bring back the deprecated and removed ``kitty +complete`` and delegate it to :program:`kitten` for backward compatibility (:pull:`5977`)

- Bump the version of Go needed to build kitty to ``1.20`` so we can use the Go stdlib ecdh package for crypto.


0.27.0 [2023-01-31]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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, 27, 0)
version: Version = Version(0, 27, 1)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat
Expand Down

0 comments on commit 17e4995

Please sign in to comment.