version 0.47.0

This commit is contained in:
Kovid Goyal 2026-05-19 11:22:14 +05:30
parent 4cef90d4c7
commit eadec09d49
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View file

@ -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 </kittens/dnd>` to allow drag and drop of files from your shell to any GUI program even across SSH (:iss:`9984`)

View file

@ -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