diff --git a/CHANGELOG.md b/CHANGELOG.md index f95f90c2..0add1b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # DeepDiff Change log +- v6-3-1 + - Bugfix deephash for paths by [maggelus](https://github.com/maggelus) + - Bugfix deephash compiled regex [maggelus](https://github.com/maggelus) + - Fix tests dependent on toml by [martin-kokos](https://github.com/martin-kokos) + - Bugfix for `include_paths` for nested dictionaries by [kor4ik](https://github.com/kor4ik) + - Use tomli and tomli-w for dealing with tomli files by [martin-kokos](https://github.com/martin-kokos) + - Bugfix for `datetime.date` by [Alex Sauer-Budge](https://github.com/amsb) - v6-3-0 - `PrefixOrSuffixOperator`: This operator will skip strings that are suffix or prefix of each other. - `include_obj_callback` and `include_obj_callback_strict` are added by [HÃ¥vard Thom](https://github.com/havardthom). diff --git a/README.md b/README.md index 6b455908..ee598e82 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,18 @@ Tested on Python 3.7+ and PyPy3. Please check the [ChangeLog](CHANGELOG.md) file for the detailed information. +DeepDiff 6-3-1 + +This release includes many bug fixes. + +- Bugfix deephash for paths by [maggelus](https://github.com/maggelus) +- Bugfix deephash compiled regex [maggelus](https://github.com/maggelus) +- Fix tests dependent on toml by [martin-kokos](https://github.com/martin-kokos) +- Bugfix for `include_paths` for nested dictionaries by [kor4ik](https://github.com/kor4ik) +- Use tomli and tomli-w for dealing with tomli files by [martin-kokos](https://github.com/martin-kokos) +- Bugfix for `datetime.date` by [Alex Sauer-Budge](https://github.com/amsb) + + DeepDiff 6-3-0 - [`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. @@ -31,11 +43,6 @@ DeepDiff 6-3-0 - `orjson` becomes optional again. - Fix for `ignore_type_in_groups` with numeric values so it does not report number changes when the number types are different. -DeepDiff 6-2-0 - -- Major improvement in the diff report for lists when items are all hashable and the order of items is important. - - ## Installation ### Install from PyPi: diff --git a/docs/changelog.rst b/docs/changelog.rst index fcfe635e..dc6698f6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,21 @@ Changelog DeepDiff Changelog +- v6-3-1 + + - Bugfix deephash for paths by + `maggelus `__ + - Bugfix deephash compiled regex + `maggelus `__ + - Fix tests dependent on toml by + `martin-kokos `__ + - Bugfix for ``include_paths`` for nested dictionaries by + `kor4ik `__ + - Use tomli and tomli-w for dealing with tomli files by + `martin-kokos `__ + - Bugfix for ``datetime.date`` by `Alex + Sauer-Budge `__ + - v6-3-0 - ``PrefixOrSuffixOperator``: This operator will skip strings that diff --git a/docs/index.rst b/docs/index.rst index b018a625..93e12181 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,6 +32,25 @@ What is New *********** +DeepDiff 6-3-1 +-------------- + +This release includes many bug fixes. + +- Bugfix deephash for paths by + `maggelus `__ +- Bugfix deephash compiled regex + `maggelus `__ +- Fix tests dependent on toml by + `martin-kokos `__ +- Bugfix for ``include_paths`` for nested dictionaries by + `kor4ik `__ +- Use tomli and tomli-w for dealing with tomli files by + `martin-kokos `__ +- Bugfix for ``datetime.date`` by `Alex + Sauer-Budge `__ + + DeepDiff 6-3-0 -------------- @@ -45,12 +64,6 @@ DeepDiff 6-3-0 - ``orjson`` becomes optional again. - Fix for ``ignore_type_in_groups`` with numeric values so it does not report number changes when the number types are different. -DeepDiff 6-2-0 --------------- - -- Major improvement in the diff report for lists when items are all hashable and the order of items is important. - - ********* Tutorials *********