Skip to content

Commit

Permalink
version 0.25.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed May 26, 2022
1 parent 3eb5320 commit cc4f1c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mouse anywhere in the current command to move the cursor there. See
Detailed list of changes
-------------------------------------

0.25.1 [future]
0.25.1 [2022-05-26]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Shell integration: Add a command to :ref:`clone_shell`
Expand Down Expand Up @@ -69,6 +69,8 @@ Detailed list of changes

- Fix deleting images by row not calculating image bounds correctly (:iss:`5081`)

- Increase the max number of combining chars per cell from two to three, without increasing memory usage.

- Linux: Load libfontconfig at runtime to allow the binaries to work for
running kittens on servers without FontConfig

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, 25, 0)
version: Version = Version(0, 25, 1)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat
Expand Down

0 comments on commit cc4f1c0

Please sign in to comment.