From 0f7010fa9541dbf63ec68d1cdf0fbe24af4afe5b Mon Sep 17 00:00:00 2001 From: Seperman Date: Tue, 7 Nov 2023 16:25:03 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=206.6.1=20=E2=86=92=206.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- deepdiff/__init__.py | 2 +- docs/conf.py | 4 ++-- docs/index.rst | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 059a5b1..739e484 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# DeepDiff v 6.6.1 +# DeepDiff v 6.7.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.6.1/)** +- **[Documentation](https://zepworks.com/deepdiff/6.7.0/)** ## What is new? @@ -98,11 +98,11 @@ Thank you! How to cite this library (APA style): - Dehpour, S. (2023). DeepDiff (Version 6.6.1) [Software]. Available from https://github.com/seperman/deepdiff. + Dehpour, S. (2023). DeepDiff (Version 6.7.0) [Software]. Available from https://github.com/seperman/deepdiff. How to cite this library (Chicago style): - Dehpour, Sep. 2023. DeepDiff (version 6.6.1). + Dehpour, Sep. 2023. DeepDiff (version 6.7.0). # Authors diff --git a/deepdiff/__init__.py b/deepdiff/__init__.py index a0dc873..3cea1ce 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.6.1' +__version__ = '6.7.0' import logging if __name__ == '__main__': diff --git a/docs/conf.py b/docs/conf.py index 0ad0532..5e7b70f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '6.6.1' +version = '6.7.0' # The full version, including alpha/beta/rc tags. -release = '6.6.1' +release = '6.7.0' load_dotenv(override=True) DOC_VERSION = os.environ.get('DOC_VERSION', version) diff --git a/docs/index.rst b/docs/index.rst index 138e36e..bea3614 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ contain the root `toctree` directive. -DeepDiff 6.6.1 documentation! +DeepDiff 6.7.0 documentation! ============================= ******* diff --git a/setup.cfg b/setup.cfg index 23a1628..96fffc3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.6.1 +current_version = 6.7.0 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 28b55ea..bbbf3a2 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ if os.environ.get('USER', '') == 'vagrant': del os.link -version = '6.6.1' +version = '6.7.0' def get_reqs(filename):