Skip to content

Commit

Permalink
version 0.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Oct 5, 2023
1 parent a2671c9 commit 6a3529b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The :doc:`ssh kitten <kittens/ssh>` is redesigned with powerful new features:
Detailed list of changes
-------------------------------------

0.30.1 [future]
0.30.1 [2023-10-05]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Shell integration: Automatically alias sudo to make the kitty terminfo files available in the sudo environment. Can be turned off via :opt:`shell_integration`
Expand All @@ -58,7 +58,7 @@ Detailed list of changes

- macOS: When running the default shell, run it via the login program so that calls to ``getlogin()`` work (:iss:`6511`)

- X11: Fix a crash on startup when the iBUS service returns errors and the GLFW_IM_MODULE env var is set to ibus (:iss:`6650`)
- X11: Fix a crash on startup when the ibus service returns errors and the GLFW_IM_MODULE env var is set to ibus (:iss:`6650`)


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

0 comments on commit 6a3529b

Please sign in to comment.