diff --git a/README.md b/README.md index 52998db5..c4268718 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# DeepDiff v 6.4.1 +# DeepDiff v 6.5.0 ![Downloads](https://img.shields.io/pypi/dm/deepdiff.svg?style=flat) ![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat) @@ -17,7 +17,7 @@ Tested on Python 3.7+ and PyPy3. -- **[Documentation](https://zepworks.com/deepdiff/6.4.1/)** +- **[Documentation](https://zepworks.com/deepdiff/6.5.0/)** ## What is new? @@ -82,11 +82,11 @@ Thank you! How to cite this library (APA style): - Dehpour, S. (2023). DeepDiff (Version 6.4.1) [Software]. Available from https://github.com/seperman/deepdiff. + Dehpour, S. (2023). DeepDiff (Version 6.5.0) [Software]. Available from https://github.com/seperman/deepdiff. How to cite this library (Chicago style): - Dehpour, Sep. 2023. DeepDiff (version 6.4.1). + Dehpour, Sep. 2023. DeepDiff (version 6.5.0). # Authors diff --git a/deepdiff/__init__.py b/deepdiff/__init__.py index f786dc97..17fbb650 100644 --- a/deepdiff/__init__.py +++ b/deepdiff/__init__.py @@ -1,6 +1,6 @@ """This module offers the DeepDiff, DeepSearch, grep, Delta and DeepHash classes.""" # flake8: noqa -__version__ = '6.4.1' +__version__ = '6.5.0' import logging if __name__ == '__main__': diff --git a/docs/conf.py b/docs/conf.py index b8f4ee49..ff6a46d3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '6.4.1' +version = '6.5.0' # The full version, including alpha/beta/rc tags. -release = '6.4.1' +release = '6.5.0' load_dotenv(override=True) DOC_VERSION = os.environ.get('DOC_VERSION', version) diff --git a/docs/index.rst b/docs/index.rst index a048ba7b..37486141 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ contain the root `toctree` directive. -DeepDiff 6.4.1 documentation! +DeepDiff 6.5.0 documentation! ============================= ******* diff --git a/setup.cfg b/setup.cfg index 0297900b..ac1829e9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.4.1 +current_version = 6.5.0 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index d41765c9..3c1af24d 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ if os.environ.get('USER', '') == 'vagrant': del os.link -version = '6.4.1' +version = '6.5.0' def get_reqs(filename):