File tree 4 files changed +34
-1
lines changed
4 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1
1
# DeepDiff Change log
2
2
3
+ - v6-7-1
4
+ - Support for subtracting delta objects when iterable_compare_func is used.
5
+ - Better handling of force adding a delta to an object.
6
+ - Fix for [ ` Can't compare dicts with both single and double quotes in keys ` ] ( https://github.com/seperman/deepdiff/issues/430 )
7
+ - Updated docs for Inconsistent Behavior with math_epsilon and ignore_order = True
3
8
- v6-7-0
4
9
- Delta can be subtracted from other objects now.
5
10
- verify_symmetry is deprecated. Use bidirectional instead.
Original file line number Diff line number Diff line change @@ -23,7 +23,14 @@ Tested on Python 3.7+ and PyPy3.
23
23
24
24
Please check the [ ChangeLog] ( CHANGELOG.md ) file for the detailed information.
25
25
26
- DeepDiff v6-7-0
26
+ DeepDiff 6-7-1
27
+
28
+ - Support for subtracting delta objects when iterable_compare_func is used.
29
+ - Better handling of force adding a delta to an object.
30
+ - Fix for [ ` Can't compare dicts with both single and double quotes in keys ` ] ( https://github.com/seperman/deepdiff/issues/430 )
31
+ - Updated docs for Inconsistent Behavior with math_epsilon and ignore_order = True
32
+
33
+ DeepDiff 6-7-0
27
34
28
35
- Delta can be subtracted from other objects now.
29
36
- verify_symmetry is deprecated. Use bidirectional instead.
Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ Changelog
5
5
6
6
DeepDiff Changelog
7
7
8
+ - v6-7-1
9
+
10
+ - Support for subtracting delta objects when iterable_compare_func
11
+ is used.
12
+ - Better handling of force adding a delta to an object.
13
+ - Fix for
14
+ ```Can't compare dicts with both single and double quotes in keys `` <https://github.com/seperman/deepdiff/issues/430>`__
15
+ - Updated docs for Inconsistent Behavior with math_epsilon and
16
+ ignore_order = True
17
+
8
18
- v6-7-0
9
19
10
20
- Delta can be subtracted from other objects now.
Original file line number Diff line number Diff line change @@ -32,6 +32,17 @@ What Is New
32
32
***********
33
33
34
34
35
+ DeepDiff 6-7-1
36
+ --------------
37
+
38
+ - Support for subtracting delta objects when iterable_compare_func
39
+ is used.
40
+ - Better handling of force adding a delta to an object.
41
+ - Fix for
42
+ ```Can't compare dicts with both single and double quotes in keys `` <https://github.com/seperman/deepdiff/issues/430>`__
43
+ - Updated docs for Inconsistent Behavior with math_epsilon and
44
+ ignore_order = True
45
+
35
46
DeepDiff 6-7-0
36
47
--------------
37
48
You can’t perform that action at this time.
0 commit comments