Skip to content

Commit

Permalink
Bump version: 5.2.0 → 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Jan 1, 2021
1 parent a871180 commit 2451bf3
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DeepDiff v 5.2.0
# DeepDiff v 5.2.1

![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 @@ -18,7 +18,7 @@ Tested on Python 3.6+ and PyPy3.

**NOTE: The last version of DeepDiff to work on Python 3.5 was DeepDiff 5-0-2**

- [Documentation](https://zepworks.com/deepdiff/5.2.0/)
- [Documentation](https://zepworks.com/deepdiff/5.2.1/)


## Installation
Expand All @@ -39,13 +39,13 @@ Tested on Python 3.6+ and PyPy3.

DeepDiff gets the difference of 2 objects.

> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.2.0/diff.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.2.1/diff.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
> - Tutorials 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/5.2.0/> for full documentation.
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.2.1/> for full documentation.
### List difference ignoring order or duplicates

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


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

# Deep Search
Expand Down Expand Up @@ -282,17 +282,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/5.2.0/dsearch.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.2.1/dsearch.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
# 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/5.2.0/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.2.1/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
Let's say you have a dictionary object.

Expand Down Expand Up @@ -340,8 +340,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/5.2.0/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.2.1/deephash.html)
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>

# Using DeepDiff in unit tests
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__ = '5.2.0'
__version__ = '5.2.1'
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 = '5.2.0'
version = '5.2.1'
# The full version, including alpha/beta/rc tags.
release = '5.2.0'
release = '5.2.1'

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 5.2.0 documentation!
DeepDiff 5.2.1 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 = 5.2.0
current_version = 5.2.1
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 = '5.2.0'
version = '5.2.1'


def get_reqs(filename):
Expand Down

0 comments on commit 2451bf3

Please sign in to comment.