diff --git a/README.md b/README.md index abc1dfa8..b7f603b1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# DeepDiff v 5.8.1 +# DeepDiff v 5.8.2 ![Downloads](https://img.shields.io/pypi/dm/deepdiff.svg?style=flat) ![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat) @@ -14,7 +14,7 @@ Tested on Python 3.6+ and PyPy3. -- **[Documentation](https://zepworks.com/deepdiff/5.8.1/)** +- **[Documentation](https://zepworks.com/deepdiff/5.8.2/)** ## What is new? @@ -67,13 +67,13 @@ Note: if you want to use DeepDiff via commandline, make sure to run `pip install DeepDiff gets the difference of 2 objects. -> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.1/diff.html) -> - The full documentation of all modules can be found on +> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.2/diff.html) +> - The full documentation of all modules can be found on > - Tutorials and posts about DeepDiff can be found on ## A few Examples -> Note: This is just a brief overview of what DeepDiff can do. Please visit for full documentation. +> Note: This is just a brief overview of what DeepDiff can do. Please visit for full documentation. ### List difference ignoring order or duplicates @@ -277,8 +277,8 @@ Example: ``` -> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.1/diff.html) -> - The full documentation can be found on +> - Please take a look at the [DeepDiff docs](https://zepworks.com/deepdiff/5.8.2/diff.html) +> - The full documentation can be found on # Deep Search @@ -310,8 +310,8 @@ And you can pass all the same kwargs as DeepSearch to grep too: {'matched_paths': {"root['somewhere']": 'around'}, 'matched_values': {"root['long']": 'somewhere'}} ``` -> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.8.1/dsearch.html) -> - The full documentation can be found on +> - Please take a look at the [DeepSearch docs](https://zepworks.com/deepdiff/5.8.2/dsearch.html) +> - The full documentation can be found on # Deep Hash (New in v4-0-0) @@ -319,8 +319,8 @@ And you can pass all the same kwargs as DeepSearch to grep too: DeepHash is designed to give you hash of ANY python object based on its contents even if the object is not considered hashable! DeepHash is supposed to be deterministic in order to make sure 2 objects that contain the same data, produce the same hash. -> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.1/deephash.html) -> - The full documentation can be found on +> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.2/deephash.html) +> - The full documentation can be found on Let's say you have a dictionary object. @@ -368,8 +368,8 @@ Which you can write as: At first it might seem weird why DeepHash(obj)[obj] but remember that DeepHash(obj) is a dictionary of hashes of all other objects that obj contains too. -> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.1/deephash.html) -> - The full documentation can be found on +> - Please take a look at the [DeepHash docs](https://zepworks.com/deepdiff/5.8.2/deephash.html) +> - The full documentation can be found on # Using DeepDiff in unit tests @@ -449,11 +449,11 @@ Thank you! How to cite this library (APA style): - Dehpour, S. (2022). DeepDiff (Version 5.8.1) [Software]. Available from https://github.com/seperman/deepdiff. + Dehpour, S. (2022). DeepDiff (Version 5.8.2) [Software]. Available from https://github.com/seperman/deepdiff. How to cite this library (Chicago style): - Dehpour, Sep. 2022. DeepDiff (version 5.8.1). + Dehpour, Sep. 2022. DeepDiff (version 5.8.2). # Authors diff --git a/deepdiff/__init__.py b/deepdiff/__init__.py index cf77ac23..b7e0e999 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__ = '5.8.1' +__version__ = '5.8.2' import logging if __name__ == '__main__': diff --git a/docs/conf.py b/docs/conf.py index 25221941..7473c571 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '5.8.1' +version = '5.8.2' # The full version, including alpha/beta/rc tags. -release = '5.8.1' +release = '5.8.2' load_dotenv(override=True) DOC_VERSION = os.environ.get('DOC_VERSION', version) diff --git a/docs/index.rst b/docs/index.rst index 60e799ba..35bfebbc 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ contain the root `toctree` directive. -DeepDiff 5.8.1 documentation! +DeepDiff 5.8.2 documentation! ============================= ***************** diff --git a/setup.cfg b/setup.cfg index 045f7cf5..0401995b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.8.1 +current_version = 5.8.2 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 555c6a66..b6c4f106 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ if os.environ.get('USER', '') == 'vagrant': del os.link -version = '5.8.1' +version = '5.8.2' def get_reqs(filename):