Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6.4.0 #412

Merged
merged 16 commits into from
Sep 1, 2023
Merged

6.4.0 #412

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump version: 6.3.1 → 6.4.0
seperman committed Sep 1, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 3dd7fcb5354534c46a8395c3a716521ba497e88a
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DeepDiff v 6.3.1
# DeepDiff v 6.4.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.3.1/)**
- **[Documentation](https://zepworks.com/deepdiff/6.4.0/)**

## What is new?

@@ -93,11 +93,11 @@ Thank you!

How to cite this library (APA style):

Dehpour, S. (2023). DeepDiff (Version 6.3.1) [Software]. Available from https://github.com/seperman/deepdiff.
Dehpour, S. (2023). DeepDiff (Version 6.4.0) [Software]. Available from https://github.com/seperman/deepdiff.

How to cite this library (Chicago style):

Dehpour, Sep. 2023. DeepDiff (version 6.3.1).
Dehpour, Sep. 2023. DeepDiff (version 6.4.0).

# Authors

2 changes: 1 addition & 1 deletion deepdiff/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""This module offers the DeepDiff, DeepSearch, grep, Delta and DeepHash classes."""
# flake8: noqa
__version__ = '6.3.1'
__version__ = '6.4.0'
import logging

if __name__ == '__main__':
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '6.3.1'
version = '6.4.0'
# The full version, including alpha/beta/rc tags.
release = '6.3.1'
release = '6.4.0'

load_dotenv(override=True)
DOC_VERSION = os.environ.get('DOC_VERSION', version)
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
contain the root `toctree` directive.
DeepDiff 6.3.1 documentation!
DeepDiff 6.4.0 documentation!
=============================

*******
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 6.3.1
current_version = 6.4.0
commit = True
tag = True
tag_name = {new_version}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
if os.environ.get('USER', '') == 'vagrant':
del os.link

version = '6.3.1'
version = '6.4.0'


def get_reqs(filename):