Skip to content

Commit

Permalink
Bump version: 6.2.2 → 6.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Jan 6, 2023
1 parent e2647eb commit 1353b72
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DeepDiff v 6.2.2
# DeepDiff v 6.2.3

![Downloads](https://img.shields.io/pypi/dm/deepdiff.svg?style=flat)
![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat)
Expand All @@ -14,7 +14,7 @@

Tested on Python 3.7+ and PyPy3.

- **[Documentation](https://zepworks.com/deepdiff/6.2.2/)**
- **[Documentation](https://zepworks.com/deepdiff/6.2.3/)**

## What is new?

Expand Down Expand Up @@ -71,13 +71,13 @@ Note: if you want to use DeepDiff via commandline, make sure to run `pip install

DeepDiff gets the difference of 2 objects.

> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/6.2.2/diff.html)
> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/6.2.2/>
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/6.2.3/diff.html)
> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/6.2.3/>
> - Tutorials and posts about DeepDiff can be found on <https://zepworks.com/tags/deepdiff/>
## A few Examples

> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/6.2.2/> for full documentation.
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/6.2.3/> for full documentation.
### List difference ignoring order or duplicates

Expand Down Expand Up @@ -281,8 +281,8 @@ Example:
```


> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/6.2.2/diff.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.2/>
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/6.2.3/diff.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.3/>

# Deep Search
Expand Down Expand Up @@ -314,17 +314,17 @@ And you can pass all the same kwargs as DeepSearch to grep too:
{'matched_paths': {"root['somewhere']": 'around'}, 'matched_values': {"root['long']": 'somewhere'}}
```

> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/6.2.2/dsearch.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.2/>
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/6.2.3/dsearch.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.3/>
# Deep Hash
(New in v4-0-0)

DeepHash is designed to give you hash of ANY python object based on its contents even if the object is not considered hashable!
DeepHash is supposed to be deterministic in order to make sure 2 objects that contain the same data, produce the same hash.

> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/6.2.2/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.2/>
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/6.2.3/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.3/>
Let's say you have a dictionary object.

Expand Down Expand Up @@ -372,8 +372,8 @@ Which you can write as:
At first it might seem weird why DeepHash(obj)[obj] but remember that DeepHash(obj) is a dictionary of hashes of all other objects that obj contains too.


> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/6.2.2/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.2/>
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/6.2.3/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/6.2.3/>

# Using DeepDiff in unit tests
Expand Down Expand Up @@ -453,11 +453,11 @@ Thank you!

How to cite this library (APA style):

Dehpour, S. (2022). DeepDiff (Version 6.2.2) [Software]. Available from https://github.com/seperman/deepdiff.
Dehpour, S. (2022). DeepDiff (Version 6.2.3) [Software]. Available from https://github.com/seperman/deepdiff.

How to cite this library (Chicago style):

Dehpour, Sep. 2022. DeepDiff (version 6.2.2).
Dehpour, Sep. 2022. DeepDiff (version 6.2.3).

# Authors

Expand Down
2 changes: 1 addition & 1 deletion deepdiff/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""This module offers the DeepDiff, DeepSearch, grep, Delta and DeepHash classes."""
# flake8: noqa
__version__ = '6.2.2'
__version__ = '6.2.3'
import logging

if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '6.2.2'
version = '6.2.3'
# The full version, including alpha/beta/rc tags.
release = '6.2.2'
release = '6.2.3'

load_dotenv(override=True)
DOC_VERSION = os.environ.get('DOC_VERSION', version)
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
contain the root `toctree` directive.
DeepDiff 6.2.2 documentation!
DeepDiff 6.2.3 documentation!
=============================

*****************
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 6.2.2
current_version = 6.2.3
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
if os.environ.get('USER', '') == 'vagrant':
del os.link

version = '6.2.2'
version = '6.2.3'


def get_reqs(filename):
Expand Down

0 comments on commit 1353b72

Please sign in to comment.