diff --git a/README.md b/README.md index ad06a2a4..606a418c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# DeepDiff v 4.3.0 +# DeepDiff v 4.3.1 ![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat) diff --git a/deepdiff/__init__.py b/deepdiff/__init__.py index 77d5c513..92b23355 100644 --- a/deepdiff/__init__.py +++ b/deepdiff/__init__.py @@ -1,6 +1,6 @@ """This module offers the DeepDiff, DeepSearch, grep and DeepHash classes.""" # flake8: noqa -__version__ = '4.3.0' +__version__ = '4.3.1' import logging if __name__ == '__main__': diff --git a/docs/conf.py b/docs/conf.py index 8fa68dcd..0be4132a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '4.3.0' +version = '4.3.1' # The full version, including alpha/beta/rc tags. -release = '4.3.0' +release = '4.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index a9e038a3..200a5683 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ contain the root `toctree` directive. -DeepDiff 4.3.0 documentation! +DeepDiff 4.3.1 documentation! ============================= **DeepDiff: Deep Difference of dictionaries, iterables, strings and other objects. It will recursively look for all the changes.** diff --git a/setup.cfg b/setup.cfg index aae8f2bc..4208fae3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.3.0 +current_version = 4.3.1 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index bbb403ab..63dd3bad 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ if os.environ.get('USER', '') == 'vagrant': del os.link -version = '4.3.0' +version = '4.3.1' def get_reqs(filename):