diff --git a/docs/changelog.rst b/docs/changelog.rst index b6342ba7d..51d04463f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,7 +4,7 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.14.1 [future] +0.14.1 [2019-05-29] --------------------- - Add an option :opt:`command_on_bell` to run an arbitrary command when diff --git a/kitty/constants.py b/kitty/constants.py index b4b7edbf2..77fe5c349 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ import sys from collections import namedtuple appname = 'kitty' -version = (0, 14, 0) +version = (0, 14, 1) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat