Skip to content

Commit cb82e6c

Browse files
committed
Bump version: 5.4.0 → 5.5.0
1 parent 82524bf commit cb82e6c

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 5.4.0
1+
# DeepDiff v 5.5.0
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,11 +18,11 @@ 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.4.0/)
21+
- [Documentation](https://zepworks.com/deepdiff/5.5.0/)
2222

2323
## What is new?
2424

25-
Deepdiff 5.4.0 comes with regular expressions in the DeepSearch and grep modules:
25+
Deepdiff 5.5.0 comes with regular expressions in the DeepSearch and grep modules:
2626

2727
```python
2828
>>> from deepdiff import grep
@@ -66,13 +66,13 @@ Note: if you want to use DeepDiff via commandline, make sure to run `pip install
6666

6767
DeepDiff gets the difference of 2 objects.
6868

69-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.4.0/diff.html)
70-
> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/5.4.0/>
69+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.5.0/diff.html)
70+
> - The full documentation of all modules can be found on <https://zepworks.com/deepdiff/5.5.0/>
7171
> - Tutorials and posts about DeepDiff can be found on <https://zepworks.com/tags/deepdiff/>
7272
7373
## A few Examples
7474

75-
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.4.0/> for full documentation.
75+
> Note: This is just a brief overview of what DeepDiff can do. Please visit <https://zepworks.com/deepdiff/5.5.0/> for full documentation.
7676
7777
### List difference ignoring order or duplicates
7878

@@ -276,8 +276,8 @@ Example:
276276
```
277277

278278

279-
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.4.0/diff.html)
280-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.4.0/>
279+
> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.5.0/diff.html)
280+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.5.0/>
281281
282282

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

312-
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.4.0/dsearch.html)
313-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.4.0/>
312+
> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.5.0/dsearch.html)
313+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.5.0/>
314314
315315
# Deep Hash
316316
(New in v4-0-0)
317317

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

321-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.4.0/deephash.html)
322-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.4.0/>
321+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.5.0/deephash.html)
322+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.5.0/>
323323
324324
Let's say you have a dictionary object.
325325

@@ -367,8 +367,8 @@ Which you can write as:
367367
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.
368368

369369

370-
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.4.0/deephash.html)
371-
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.4.0/>
370+
> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.5.0/deephash.html)
371+
> - The full documentation can be found on <https://zepworks.com/deepdiff/5.5.0/>
372372
373373

374374
# 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.4.0'
3+
__version__ = '5.5.0'
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.4.0'
63+
version = '5.5.0'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '5.4.0'
65+
release = '5.5.0'
6666

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

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
7-
DeepDiff 5.4.0 documentation!
7+
DeepDiff 5.5.0 documentation!
88
=============================
99

1010
*****************
@@ -64,10 +64,10 @@ DeepDiff 5.5.0
6464
[4, 'b', 2]
6565
6666
67-
Deepdiff 5.4.0
67+
Deepdiff 5.5.0
6868
--------------
6969

70-
Deepdiff 5.4.0 comes with regular expressions in the DeepSearch and grep modules:
70+
Deepdiff 5.5.0 comes with regular expressions in the DeepSearch and grep modules:
7171

7272

7373
.. code:: python

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.4.0
2+
current_version = 5.5.0
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.4.0'
13+
version = '5.5.0'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)