version 0.4.0

This commit is contained in:
Kovid Goyal 2017-10-22 09:48:43 +05:30
parent a9e26952e9
commit be6e41c400
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@ Changelog
kitty is a feature full, cross-platform, *fast*, OpenGL based terminal emulator.
version 0.4.0 [future]
-----------------------
version 0.4.0 [2017-10-22]
---------------------------
- Support for drawing arbitrary raster graphics (images) in the terminal via a
new graphics protocol. kitty can draw images with full 32-bit color using both

View File

@ -11,7 +11,7 @@ from collections import namedtuple
from .fast_data_types import set_boss as set_c_boss
appname = 'kitty'
version = (0, 3, 0)
version = (0, 4, 0)
str_version = '.'.join(map(str, version))
_plat = sys.platform.lower()
isosx = 'darwin' in _plat