From 8866e207cdc8ceb6441c02b1d9ba8d6d470de2c3 Mon Sep 17 00:00:00 2001 From: Matt Wang Date: Wed, 13 Nov 2024 17:26:55 +0100 Subject: [PATCH] Update change log for the next release (1.4) --- CHANGES.rst | 8 ++++++++ ydiff.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index bfe367e..b2566ac 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,14 @@ Change log ========== +Version 1.4 (2024-11-13) + + - Fine-grained, word-level diff for change blocks + - New ``--theme`` option for selecting different themes + - Options ``-side-by-side``, ``--width 0``, and ``--wrap`` become default + (use ``--unified``/``--nowrap`` for legacy behavior) + - Python 2 support is officially dropped + Version 1.3 (2024-04-02) - Dropped context diff support diff --git a/ydiff.py b/ydiff.py index f2f1fbb..40c81e1 100755 --- a/ydiff.py +++ b/ydiff.py @@ -17,7 +17,7 @@ from typing import List, Tuple PKG_INFO = { - 'version' : '2.0', + 'version' : '1.4', 'license' : 'BSD-3', 'author' : 'Matt Wang', 'url' : 'https://github.com/ymattw/ydiff',