Skip to content

Commit 0ce95ff

Browse files
committed
Bump version: 4.0.3 → 4.0.4
1 parent bf9d8fc commit 0ce95ff

File tree

6 files changed

+19
-18
lines changed

6 files changed

+19
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 4.0.3
1+
# DeepDiff v 4.0.4
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)

deepdiff/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
"""This module offers the DeepDiff, DeepSearch, grep and DeepHash classes."""
2-
# flake8: noqa
3-
__version__ = '4.0.3'
4-
import logging
5-
6-
if __name__ == '__main__':
7-
logging.basicConfig(format='%(asctime)s %(levelname)8s %(message)s')
8-
9-
10-
from .diff import DeepDiff
11-
from .search import DeepSearch, grep
12-
from .deephash import DeepHash
1+
"""This module offers the DeepDiff, DeepSearch, grep and DeepHash classes."""
2+
# flake8: noqa
3+
__version__ = '4.0.4'
4+
import logging
5+
6+
if __name__ == '__main__':
7+
logging.basicConfig(format='%(asctime)s %(levelname)8s %(message)s')
8+
9+
10+
from .diff import DeepDiff
11+
from .search import DeepSearch, grep
12+
from .deephash import DeepHash

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 = '4.0.3'
63+
version = '4.0.4'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '4.0.3'
65+
release = '4.0.4'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

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 4.0.3 documentation!
7+
DeepDiff 4.0.4 documentation!
88
=============================
99

1010
**DeepDiff: Deep Difference of dictionaries, iterables, strings and other objects. It will recursively look for all the changes.**

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.0.3
2+
current_version = 4.0.4
33
commit = True
44
tag = True
55
tag_name = {new_version}
@@ -20,3 +20,4 @@ exclude = ./data,./src,.svn,CVS,.bzr,.hg,.git,__pycache__
2020
[bumpversion:file:docs/conf.py]
2121

2222
[bumpversion:file:deepdiff/__init__.py]
23+

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 = '4.0.3'
13+
version = '4.0.4'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)