From 460c353898b0fbefdfbdeea7885e27f438451a74 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 5 Dec 2018 14:21:26 +0530 Subject: [PATCH] version 0.13.0 --- docs/changelog.rst | 4 ++-- kitty/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 397fac86f..b6bb278b0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,7 @@ Changelog |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. -0.13.0 [future] +0.13.0 [2018-12-05] ------------------------------ - Add an option :opt:`scrollback_pager_history_size` to tell kitty to store @@ -41,7 +41,7 @@ Changelog - Fix incorrect key repeat rate on wayland (:pull:`1055`) -- macOS: Fix drag and drop of files not working on mojave (:iss:`1058`) +- macOS: Fix drag and drop of files not working on Mojave (:iss:`1058`) - macOS: Fix IME input for East Asian languages (:iss:`910`) diff --git a/kitty/constants.py b/kitty/constants.py index 1507cc76d..bf881b609 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -8,7 +8,7 @@ import sys from collections import namedtuple appname = 'kitty' -version = (0, 12, 3) +version = (0, 13, 0) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat