From cb31948b5c8ed295c9720fbf3cf2b9f8073acd14 Mon Sep 17 00:00:00 2001 From: Seperman Date: Thu, 6 Jul 2023 07:27:45 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=206.3.0=20=E2=86=92=206.3.1?= 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 ee598e82..b0fb7f13 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# DeepDiff v 6.3.0 +# DeepDiff v 6.3.1 ![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.3.0/)** +- **[Documentation](https://zepworks.com/deepdiff/6.3.1/)** ## What is new? @@ -93,11 +93,11 @@ Thank you! How to cite this library (APA style): - Dehpour, S. (2023). DeepDiff (Version 6.3.0) [Software]. Available from https://github.com/seperman/deepdiff. + Dehpour, S. (2023). DeepDiff (Version 6.3.1) [Software]. Available from https://github.com/seperman/deepdiff. How to cite this library (Chicago style): - Dehpour, Sep. 2023. DeepDiff (version 6.3.0). + Dehpour, Sep. 2023. DeepDiff (version 6.3.1). # Authors diff --git a/deepdiff/__init__.py b/deepdiff/__init__.py index c05fcb3c..59570bd4 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.3.0' +__version__ = '6.3.1' import logging if __name__ == '__main__': diff --git a/docs/conf.py b/docs/conf.py index 0d8e79d8..a32db8e0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '6.3.0' +version = '6.3.1' # The full version, including alpha/beta/rc tags. -release = '6.3.0' +release = '6.3.1' load_dotenv(override=True) DOC_VERSION = os.environ.get('DOC_VERSION', version) diff --git a/docs/index.rst b/docs/index.rst index 93e12181..36e38d6d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ contain the root `toctree` directive. -DeepDiff 6.3.0 documentation! +DeepDiff 6.3.1 documentation! ============================= ******* diff --git a/setup.cfg b/setup.cfg index 95281a34..d7ccb1b4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.3.0 +current_version = 6.3.1 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 172a1c31..e4fb01c8 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ if os.environ.get('USER', '') == 'vagrant': del os.link -version = '6.3.0' +version = '6.3.1' def get_reqs(filename):