From 1f920ecc772cefb035954f1b849cee0d95ceb29c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 16 Jan 2025 09:14:51 +0530 Subject: [PATCH] version 0.39.0 --- docs/changelog.rst | 2 +- kitty/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 5e07a41ca2e..26adec100ae 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -84,7 +84,7 @@ consumption to do the same tasks. Detailed list of changes ------------------------------------- -0.39.0 [future] +0.39.0 [2025-01-16] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :doc:`diff kitten `: Automatically use dark/light color scheme based on the color scheme of the parent terminal. Can be controlled via the new :opt:`kitten-diff.color_scheme` option. Note that this is a **default behavior change** (:iss:`8170`) diff --git a/kitty/constants.py b/kitty/constants.py index 63544891464..24c27df1ef0 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -23,7 +23,7 @@ class Version(NamedTuple): appname: str = 'kitty' kitty_face = '🐱' -version: Version = Version(0, 38, 1) +version: Version = Version(0, 39, 0) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat