version 0.30.0

This commit is contained in:
Kovid Goyal 2023-09-18 07:48:09 +05:30
parent 9a0140c430
commit ef8e3b150c
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

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