Skip to content

Commit 2451bf3

Browse files
committed
Bump version: 5.2.0 → 5.2.1
1 parent a871180 commit 2451bf3

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 5.2.0
1+
# DeepDiff v 5.2.1
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)
@@ -18,7 +18,7 @@ Tested on Python 3.6+ and PyPy3.
1818

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

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

2323

2424
## Installation
@@ -39,13 +39,13 @@ Tested on Python 3.6+ and PyPy3.
3939

4040
DeepDiff gets the difference of 2 objects.
4141

42-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.2.0/diff.html)
43-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
42+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.2.1/diff.html)
43+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
4444
> - Tutorials can be found on <https://zepworks.com/tags/deepdiff/>
4545
4646
## A few Examples
4747

48-
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.2.0/> for full documentation.
48+
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.2.1/> for full documentation.
4949
5050
### List difference ignoring order or duplicates
5151

@@ -249,8 +249,8 @@ Example:
249249
```
250250

251251

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

256256
# Deep Search
@@ -282,17 +282,17 @@ And you can pass all the same kwargs as DeepSearch to grep too:
282282
{'matched_paths': {"root['somewhere']": 'around'}, 'matched_values': {"root['long']": 'somewhere'}}
283283
```
284284

285-
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.2.0/dsearch.html)
286-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
285+
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.2.1/dsearch.html)
286+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
287287
288288
# Deep Hash
289289
(New in v4-0-0)
290290

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

294-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.2.0/deephash.html)
295-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
294+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.2.1/deephash.html)
295+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
296296
297297
Let's say you have a dictionary object.
298298

@@ -340,8 +340,8 @@ Which you can write as:
340340
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.
341341

342342

343-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.2.0/deephash.html)
344-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.0/>
343+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.2.1/deephash.html)
344+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.2.1/>
345345
346346

347347
# Using DeepDiff in unit tests

deepdiff/__init__.py

+1-1
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__ = '5.2.0'
3+
__version__ = '5.2.1'
44
import logging
55

66
if __name__ == '__main__':

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '5.2.0'
63+
version = '5.2.1'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '5.2.0'
65+
release = '5.2.1'
6666

6767
load_dotenv(override=True)
6868
DOC_VERSION = os.environ.get('DOC_VERSION', version)

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
7-
DeepDiff 5.2.0 documentation!
7+
DeepDiff 5.2.1 documentation!
88
=============================
99

1010
*****************

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.2.0
2+
current_version = 5.2.1
33
commit = True
44
tag = True
55
tag_name = {new_version}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if os.environ.get('USER', '') == 'vagrant':
1111
del os.link
1212

13-
version = '5.2.0'
13+
version = '5.2.1'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)