version 0.32.2

This commit is contained in:
Kovid Goyal 2024-02-12 11:15:49 +05:30
parent e6d881e89b
commit f63a4cf90c
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ The :doc:`ssh kitten <kittens/ssh>` is redesigned with powerful new features:
Detailed list of changes
-------------------------------------
0.32.2 [future]
0.32.2 [2023-02-12]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- kitten @ load-config: Allow (re)loading kitty.conf via remote control

View file

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