diff --git a/docs/changelog.rst b/docs/changelog.rst index 13395d1a0..b49ba919e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -43,7 +43,7 @@ The :doc:`ssh kitten ` 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` @@ -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] diff --git a/kitty/constants.py b/kitty/constants.py index 6a8051898..08ae81715 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, 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