Skip to content

Commit 4ab5fb5

Browse files
committed
Bump version: 5.8.0 → 5.8.1
1 parent 945a69d commit 4ab5fb5

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 5.8.0
1+
# DeepDiff v 5.8.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)
@@ -14,7 +14,7 @@
1414

1515
Tested on Python 3.6+ and PyPy3.
1616

17-
- **[Documentation](https://zepworks.com/deepdiff/5.8.0/)**
17+
- **[Documentation](https://zepworks.com/deepdiff/5.8.1/)**
1818

1919
## What is new?
2020

@@ -61,13 +61,13 @@ Note: if you want to use DeepDiff via commandline, make sure to run `pip install
6161

6262
DeepDiff gets the difference of 2 objects.
6363

64-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.0/diff.html)
65-
> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/5.8.0/>
64+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.1/diff.html)
65+
> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/5.8.1/>
6666
> - Tutorials and posts about DeepDiff can be found on <https://zepworks.com/tags/deepdiff/>
6767
6868
## A few Examples
6969

70-
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.8.0/> for full documentation.
70+
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.8.1/> for full documentation.
7171
7272
### List difference ignoring order or duplicates
7373

@@ -271,8 +271,8 @@ Example:
271271
```
272272

273273

274-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.0/diff.html)
275-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/>
274+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.1/diff.html)
275+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/>
276276
277277

278278
# Deep Search
@@ -304,17 +304,17 @@ And you can pass all the same kwargs as DeepSearch to grep too:
304304
{'matched_paths': {"root['somewhere']": 'around'}, 'matched_values': {"root['long']": 'somewhere'}}
305305
```
306306

307-
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.8.0/dsearch.html)
308-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/>
307+
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.8.1/dsearch.html)
308+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/>
309309
310310
# Deep Hash
311311
(New in v4-0-0)
312312

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

316-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.0/deephash.html)
317-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/>
316+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.1/deephash.html)
317+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/>
318318
319319
Let's say you have a dictionary object.
320320

@@ -362,8 +362,8 @@ Which you can write as:
362362
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.
363363

364364

365-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.0/deephash.html)
366-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.0/>
365+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.1/deephash.html)
366+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.8.1/>
367367
368368

369369
# Using DeepDiff in unit tests
@@ -443,11 +443,11 @@ Thank you!
443443

444444
How to cite this library (APA style):
445445

446-
Dehpour, S. (2022). DeepDiff (Version 5.8.0) [Software]. Available from https://github.com/seperman/deepdiff.
446+
Dehpour, S. (2022). DeepDiff (Version 5.8.1) [Software]. Available from https://github.com/seperman/deepdiff.
447447

448448
How to cite this library (Chicago style):
449449

450-
Dehpour, Sep. 2022. DeepDiff (version 5.8.0).
450+
Dehpour, Sep. 2022. DeepDiff (version 5.8.1).
451451

452452
# Authors
453453

deepdiff/__init__.py

Lines changed: 1 addition & 1 deletion
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.8.0'
3+
__version__ = '5.8.1'
44
import logging
55

66
if __name__ == '__main__':

docs/conf.py

Lines changed: 2 additions & 2 deletions
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.8.0'
63+
version = '5.8.1'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '5.8.0'
65+
release = '5.8.1'
6666

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

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
7-
DeepDiff 5.8.0 documentation!
7+
DeepDiff 5.8.1 documentation!
88
=============================
99

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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.8.0
2+
current_version = 5.8.1
33
commit = True
44
tag = True
55
tag_name = {new_version}

setup.py

Lines changed: 1 addition & 1 deletion
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.8.0'
13+
version = '5.8.1'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)