Skip to content

Commit 39c3a3d

Browse files
authored
Merge pull request #429 from seperman/dev
6.7.0
2 parents a9b7286 + 0f7010f commit 39c3a3d

20 files changed

+679
-165
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# DeepDiff Change log
22

3+
- v6-7-0
4+
- Delta can be subtracted from other objects now.
5+
- verify_symmetry is deprecated. Use bidirectional instead.
6+
- always_include_values flag in Delta can be enabled to include values in the delta for every change.
7+
- Fix for Delta.__add__ breaks with esoteric dict keys.
8+
- You can load a delta from the list of flat dictionaries.
39
- v6-6-1
410
- Fix for [DeepDiff raises decimal exception when using significant digits](https://github.com/seperman/deepdiff/issues/426)
511
- Introducing group_by_sort_key

README.md

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 6.6.1
1+
# DeepDiff v 6.7.0
22

33
![Downloads](https://img.shields.io/pypi/dm/deepdiff.svg?style=flat)
44
![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat)
@@ -17,36 +17,27 @@
1717

1818
Tested on Python 3.7+ and PyPy3.
1919

20-
- **[Documentation](https://zepworks.com/deepdiff/6.6.1/)**
20+
- **[Documentation](https://zepworks.com/deepdiff/6.7.0/)**
2121

2222
## What is new?
2323

2424
Please check the [ChangeLog](CHANGELOG.md) file for the detailed information.
2525

26+
DeepDiff v6-7-0
27+
28+
- Delta can be subtracted from other objects now.
29+
- verify_symmetry is deprecated. Use bidirectional instead.
30+
- always_include_values flag in Delta can be enabled to include values in the delta for every change.
31+
- Fix for Delta.__add__ breaks with esoteric dict keys.
32+
- You can load a delta from the list of flat dictionaries.
33+
2634
DeepDiff 6-6-1
35+
2736
- Fix for [DeepDiff raises decimal exception when using significant digits](https://github.com/seperman/deepdiff/issues/426)
2837
- Introducing group_by_sort_key
2938
- Adding group_by 2D. For example `group_by=['last_name', 'zip_code']`
3039

3140

32-
DeepDiff 6-6-0
33-
34-
- [Serialize To Flat Dicts](https://zepworks.com/deepdiff/current/serialization.html#delta-to-flat-dicts-label)
35-
- [NumPy 2.0 compatibility](https://github.com/seperman/deepdiff/pull/422) by [William Jamieson](https://github.com/WilliamJamieson)
36-
37-
DeepDiff 6-5-0
38-
39-
- [parse_path](https://zepworks.com/deepdiff/current/faq.html#q-how-do-i-parse-deepdiff-result-paths)
40-
41-
DeepDiff 6-4-1
42-
43-
- [Add Ignore List Order Option to DeepHash](https://github.com/seperman/deepdiff/pull/403) by
44-
[Bobby Morck](https://github.com/bmorck)
45-
- [pyyaml to 6.0.1 to fix cython build problems](https://github.com/seperman/deepdiff/pull/406) by [Robert Bo Davis](https://github.com/robert-bo-davis)
46-
- [Precompiled regex simple diff](https://github.com/seperman/deepdiff/pull/413) by [cohml](https://github.com/cohml)
47-
- New flag: `zip_ordered_iterables` for forcing iterable items to be compared one by one.
48-
49-
5041
## Installation
5142

5243
### Install from PyPi:
@@ -107,11 +98,11 @@ Thank you!
10798

10899
How to cite this library (APA style):
109100

110-
Dehpour, S. (2023). DeepDiff (Version 6.6.1) [Software]. Available from https://github.com/seperman/deepdiff.
101+
Dehpour, S. (2023). DeepDiff (Version 6.7.0) [Software]. Available from https://github.com/seperman/deepdiff.
111102

112103
How to cite this library (Chicago style):
113104

114-
Dehpour, Sep. 2023. DeepDiff (version 6.6.1).
105+
Dehpour, Sep. 2023. DeepDiff (version 6.7.0).
115106

116107
# Authors
117108

deepdiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""This module offers the DeepDiff, DeepSearch, grep, Delta and DeepHash classes."""
22
# flake8: noqa
3-
__version__ = '6.6.1'
3+
__version__ = '6.7.0'
44
import logging
55

66
if __name__ == '__main__':

0 commit comments

Comments
 (0)