version 0.45.0

This commit is contained in:
Kovid Goyal
2025-12-24 09:24:17 +05:30
parent ef4e6f97bc
commit c26b770530
2 changed files with 2 additions and 2 deletions

View File

@@ -149,7 +149,7 @@ consumption to do the same tasks.
Detailed list of changes
-------------------------------------
0.45.0 [future]
0.45.0 [2025-12-24]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- A new :doc:`kitten to select files at the speed of thought </kittens/choose-files>` with a keyboard first interface and support for content previews of text file with syntax highlighting, images, videos, e-books and more (:iss:`9263`)

View File

@@ -22,7 +22,7 @@ class Version(NamedTuple):
appname: str = 'kitty'
kitty_face = '🐱'
version: Version = Version(0, 44, 0)
version: Version = Version(0, 45, 0)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat