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',