Skip to content

Commit d4607ab

Browse files
committed
Bump version: 5.0.0 → 5.0.1
1 parent 1534b0f commit d4607ab

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 5.0.0
1+
# DeepDiff v 5.0.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)
@@ -17,7 +17,7 @@ Tested on Python 3.5+ and PyPy3.
1717
**NOTE: Python 2 is not supported any more. DeepDiff v3.3.0 was the last version to support Python 2**
1818

1919

20-
- [Documentation](https://zepworks.com/deepdiff/5.0.0/)
20+
- [Documentation](https://zepworks.com/deepdiff/5.0.1/)
2121

2222

2323
## Installation
@@ -46,13 +46,13 @@ If you are running into trouble installing Murmur3, please take a look at the [T
4646

4747
DeepDiff gets the difference of 2 objects.
4848

49-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.0.0/diff.html)
50-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.0/>
49+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.0.1/diff.html)
50+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.1/>
5151
> - Tutorials can be found on <https://zepworks.com/tags/deepdiff/>
5252
5353
## A few Examples
5454

55-
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.0.0/> for full documentation.
55+
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.0.1/> for full documentation.
5656
5757
### List difference ignoring order or duplicates
5858

@@ -256,8 +256,8 @@ Example:
256256
```
257257

258258

259-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.0.0/diff.html)
260-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.0/>
259+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.0.1/diff.html)
260+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.1/>
261261
262262

263263
# Deep Search
@@ -289,17 +289,17 @@ And you can pass all the same kwargs as DeepSearch to grep too:
289289
{'matched_paths': {"root['somewhere']": 'around'}, 'matched_values': {"root['long']": 'somewhere'}}
290290
```
291291

292-
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.0.0/dsearch.html)
293-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.0/>
292+
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.0.1/dsearch.html)
293+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.1/>
294294
295295
# Deep Hash
296296
(New in v4-0-0)
297297

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

301-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.0.0/deephash.html)
302-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.0/>
301+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.0.1/deephash.html)
302+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.1/>
303303
304304
Let's say you have a dictionary object.
305305

@@ -347,8 +347,8 @@ Which you can write as:
347347
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.
348348

349349

350-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.0.0/deephash.html)
351-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.0/>
350+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.0.1/deephash.html)
351+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.0.1/>
352352
353353

354354
# Using DeepDiff in unit tests

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.0.0'
3+
__version__ = '5.0.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.0.0'
63+
version = '5.0.1'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '5.0.0'
65+
release = '5.0.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.0.0 documentation!
7+
DeepDiff 5.0.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.0.0
2+
current_version = 5.0.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.0.0'
13+
version = '5.0.1'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)