version 0.48.0

This commit is contained in:
Kovid Goyal
2026-07-18 07:37:54 +05:30
parent 4b7aac4999
commit 5b4ea1bbba
2 changed files with 2 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ consumption to do the same tasks.
Detailed list of changes
-------------------------------------
0.48.0 [future]
0.48.0 [2026-07-18]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Implement vertical tabs by setting :opt:`tab_bar_edge` to ``left`` or ``right`` (:pull:`9855`)

View File

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