Skip to content

Commit cfa0fba

Browse files
committed
updating docs
1 parent 3dd7fcb commit cfa0fba

File tree

4 files changed

+38
-39
lines changed

4 files changed

+38
-39
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# DeepDiff Change log
22

3+
- v6-4-0
4+
- [Add Ignore List Order Option to DeepHash](https://github.com/seperman/deepdiff/pull/403) by
5+
[Bobby Morck](https://github.com/bmorck)
6+
- [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)
7+
- [Precompiled regex simple diff](https://github.com/seperman/deepdiff/pull/413) by [cohml](https://github.com/cohml)
8+
- New flag: `zip_ordered_iterables` for forcing iterable items to be compared one by one.
39
- v6-3-1
410
- Bugfix deephash for paths by [maggelus](https://github.com/maggelus)
511
- Bugfix deephash compiled regex [maggelus](https://github.com/maggelus)

README.md

+6-17
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,14 @@ Tested on Python 3.7+ and PyPy3.
2323

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

26-
DeepDiff 6-3-1
26+
DeepDiff 6-4-0
2727

28-
This release includes many bug fixes.
28+
- [Add Ignore List Order Option to DeepHash](https://github.com/seperman/deepdiff/pull/403) by
29+
[Bobby Morck](https://github.com/bmorck)
30+
- [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)
31+
- [Precompiled regex simple diff](https://github.com/seperman/deepdiff/pull/413) by [cohml](https://github.com/cohml)
32+
- New flag: `zip_ordered_iterables` for forcing iterable items to be compared one by one.
2933

30-
- Bugfix deephash for paths by [maggelus](https://github.com/maggelus)
31-
- Bugfix deephash compiled regex [maggelus](https://github.com/maggelus)
32-
- Fix tests dependent on toml by [martin-kokos](https://github.com/martin-kokos)
33-
- Bugfix for `include_paths` for nested dictionaries by [kor4ik](https://github.com/kor4ik)
34-
- Use tomli and tomli-w for dealing with tomli files by [martin-kokos](https://github.com/martin-kokos)
35-
- Bugfix for `datetime.date` by [Alex Sauer-Budge](https://github.com/amsb)
36-
37-
38-
DeepDiff 6-3-0
39-
40-
- [`PrefixOrSuffixOperator`](https://zepworks.com/deepdiff/current/custom.html#prefix-or-suffix-operator-label): This operator will skip strings that are suffix or prefix of each other.
41-
- [`include_obj_callback`](https://zepworks.com/deepdiff/current/ignore_types_or_values.html#include-obj-callback-label) and `include_obj_callback_strict` are added by [Håvard Thom](https://github.com/havardthom).
42-
- Fixed a corner case where numpy's `np.float32` nans are not ignored when using `ignore_nan_equality` by [Noam Gottlieb](https://github.com/noamgot)
43-
- `orjson` becomes optional again.
44-
- Fix for `ignore_type_in_groups` with numeric values so it does not report number changes when the number types are different.
4534

4635
## Installation
4736

docs/changelog.rst

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ Changelog
55

66
DeepDiff Changelog
77

8+
- v6-4-0
9+
10+
- `Add Ignore List Order Option to
11+
DeepHash <https://github.com/seperman/deepdiff/pull/403>`__ by
12+
`Bobby Morck <https://github.com/bmorck>`__
13+
- `pyyaml to 6.0.1 to fix cython build
14+
problems <https://github.com/seperman/deepdiff/pull/406>`__ by
15+
`Robert Bo Davis <https://github.com/robert-bo-davis>`__
16+
- `Precompiled regex simple
17+
diff <https://github.com/seperman/deepdiff/pull/413>`__ by
18+
`cohml <https://github.com/cohml>`__
19+
- New flag: ``zip_ordered_iterables`` for forcing iterable items to
20+
be compared one by one.
21+
822
- v6-3-1
923

1024
- Bugfix deephash for paths by

docs/index.rst

+12-22
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,21 @@ What is New
3232
***********
3333

3434

35-
DeepDiff 6-3-1
35+
DeepDiff 6-4-0
3636
--------------
3737

38-
This release includes many bug fixes.
38+
- `Add Ignore List Order Option to
39+
DeepHash <https://github.com/seperman/deepdiff/pull/403>`__ by
40+
`Bobby Morck <https://github.com/bmorck>`__
41+
- `pyyaml to 6.0.1 to fix cython build
42+
problems <https://github.com/seperman/deepdiff/pull/406>`__ by
43+
`Robert Bo Davis <https://github.com/robert-bo-davis>`__
44+
- `Precompiled regex simple
45+
diff <https://github.com/seperman/deepdiff/pull/413>`__ by
46+
`cohml <https://github.com/cohml>`__
47+
- New flag: ``zip_ordered_iterables`` for forcing iterable items to
48+
be compared one by one.
3949

40-
- Bugfix deephash for paths by `maggelus <https://github.com/maggelus>`__
41-
- Bugfix deephash compiled regex `maggelus <https://github.com/maggelus>`__
42-
- Fix tests dependent on toml by `martin-kokos <https://github.com/martin-kokos>`__
43-
- Bugfix for ``include_paths`` for nested dictionaries by `kor4ik <https://github.com/kor4ik>`__
44-
- Use tomli and tomli-w for dealing with tomli files by `martin-kokos <https://github.com/martin-kokos>`__
45-
- Bugfix for ``datetime.date`` by `Alex Sauer-Budge <https://github.com/amsb>`__
46-
47-
48-
DeepDiff 6-3-0
49-
--------------
50-
51-
- :ref:`prefix_or_suffix_operator_label`: This operator will skip strings that are
52-
suffix or prefix of each other.
53-
- :ref:`include_obj_callback_label` and :ref:`include_obj_callback_strict_label` are
54-
added by `Håvard Thom <https://github.com/havardthom>`__.
55-
- Fixed a corner case where numpy’s ``np.float32`` nans are not ignored
56-
when using ``ignore_nan_equality`` by `Noam
57-
Gottlieb <https://github.com/noamgot>`__
58-
- ``orjson`` becomes optional again.
59-
- Fix for ``ignore_type_in_groups`` with numeric values so it does not report number changes when the number types are different.
6050

6151
*********
6252
Tutorials

0 commit comments

Comments
 (0)