From db9f6678ad88cff1068cdca5df3d7010ab443717 Mon Sep 17 00:00:00 2001 From: Seperman Date: Mon, 13 Nov 2023 23:12:41 -0800 Subject: [PATCH] updating docs --- CHANGELOG.md | 5 +++++ README.md | 9 ++++++++- docs/changelog.rst | 10 ++++++++++ docs/index.rst | 11 +++++++++++ 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01dd971..24300d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # DeepDiff Change log +- v6-7-1 + - Support for subtracting delta objects when iterable_compare_func is used. + - Better handling of force adding a delta to an object. + - Fix for [`Can't compare dicts with both single and double quotes in keys`](https://github.com/seperman/deepdiff/issues/430) + - Updated docs for Inconsistent Behavior with math_epsilon and ignore_order = True - v6-7-0 - Delta can be subtracted from other objects now. - verify_symmetry is deprecated. Use bidirectional instead. diff --git a/README.md b/README.md index b2f65be..23f4384 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,14 @@ Tested on Python 3.7+ and PyPy3. Please check the [ChangeLog](CHANGELOG.md) file for the detailed information. -DeepDiff v6-7-0 +DeepDiff 6-7-1 + +- Support for subtracting delta objects when iterable_compare_func is used. +- Better handling of force adding a delta to an object. +- Fix for [`Can't compare dicts with both single and double quotes in keys`](https://github.com/seperman/deepdiff/issues/430) +- Updated docs for Inconsistent Behavior with math_epsilon and ignore_order = True + +DeepDiff 6-7-0 - Delta can be subtracted from other objects now. - verify_symmetry is deprecated. Use bidirectional instead. diff --git a/docs/changelog.rst b/docs/changelog.rst index de09ee3..3e44fd7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,16 @@ Changelog DeepDiff Changelog +- v6-7-1 + + - Support for subtracting delta objects when iterable_compare_func + is used. + - Better handling of force adding a delta to an object. + - Fix for + ```Can't compare dicts with both single and double quotes in keys`` `__ + - Updated docs for Inconsistent Behavior with math_epsilon and + ignore_order = True + - v6-7-0 - Delta can be subtracted from other objects now. diff --git a/docs/index.rst b/docs/index.rst index 4793556..b337d0c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,6 +32,17 @@ What Is New *********** +DeepDiff 6-7-1 +-------------- + + - Support for subtracting delta objects when iterable_compare_func + is used. + - Better handling of force adding a delta to an object. + - Fix for + ```Can't compare dicts with both single and double quotes in keys`` `__ + - Updated docs for Inconsistent Behavior with math_epsilon and + ignore_order = True + DeepDiff 6-7-0 --------------