diff --git a/docs/changelog.rst b/docs/changelog.rst index ce550b886..3894f0ceb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -173,7 +173,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.47.0 [future] +0.47.0 [2026-05-19] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - A new :doc:`Drag and drop kitten ` to allow drag and drop of files from your shell to any GUI program even across SSH (:iss:`9984`) diff --git a/kitty/constants.py b/kitty/constants.py index fcc688fb4..05bdf6649 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, 46, 2) +version: Version = Version(0, 47, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat