diff --git a/docs/changelog.rst b/docs/changelog.rst index d1bff76a2..184937913 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,14 +4,14 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. To update |kitty|, :doc:`follow the instructions `. -0.19.1 [future] +0.19.1 [2020-10-06] ------------------- - hints kitten: Add an ``ip`` type for easy selection of IP addresses (:pull:`3009`) - Fix a regression that caused a segfault when using - :opt:`scrollback_pager_history_size` and it gets full (:iss:`3011`) + :opt:`scrollback_pager_history_size` and it needs to be expanded (:iss:`3011`) - Fix update available notifications repeating (:pull:`3006`) diff --git a/kitty/constants.py b/kitty/constants.py index 4875716aa..d1545ccea 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -20,7 +20,7 @@ class Version(NamedTuple): appname: str = 'kitty' -version: Version = Version(0, 19, 0) +version: Version = Version(0, 19, 1) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat