Skip to content

Commit

Permalink
version 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Oct 23, 2017
1 parent b1424cc commit 4e7b957
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ Changelog
kitty is a feature full, cross-platform, *fast*, OpenGL based terminal emulator.


version 0.4.1 [2017-10-23]
version 0.4.2 [2017-10-23]
---------------------------

- Fix a regression in 0.4.0 that broke custom key mappings

- Fix a regression in 0.4.0 that broke support for non-QWERTY keyboard layouts

- Avoid using threads to reap zombie child processes. Also prevent kitty from
hanging if the open program hangs when clicking on a URL.

Expand Down
2 changes: 1 addition & 1 deletion kitty/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .fast_data_types import set_boss as set_c_boss

appname = 'kitty'
version = (0, 4, 1)
version = (0, 4, 2)
str_version = '.'.join(map(str, version))
_plat = sys.platform.lower()
isosx = 'darwin' in _plat
Expand Down

0 comments on commit 4e7b957

Please sign in to comment.