Skip to content

Commit 34f4f37

Browse files
committed
Bump version: 8.0.1 → 8.1.0
1 parent 9c8968f commit 34f4f37

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors:
55
given-names: "Sep"
66
orcid: "https://orcid.org/0009-0009-5828-4345"
77
title: "DeepDiff"
8-
version: 8.0.1
8+
version: 8.1.0
99
date-released: 2024
1010
url: "https://github.com/seperman/deepdiff"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 8.0.1
1+
# DeepDiff v 8.1.0
22

33
![Downloads](https://img.shields.io/pypi/dm/deepdiff.svg?style=flat)
44
![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat)
@@ -17,7 +17,7 @@
1717

1818
Tested on Python 3.8+ and PyPy3.
1919

20-
- **[Documentation](https://zepworks.com/deepdiff/8.0.1/)**
20+
- **[Documentation](https://zepworks.com/deepdiff/8.1.0/)**
2121

2222
## What is new?
2323

@@ -40,7 +40,7 @@ DeepDiff 8-1-0
4040
- Fixes to_json() method chokes on standard json.dumps() kwargs such as sort_keys
4141
- to_dict() method chokes on standard json.dumps() kwargs #490
4242
- Fixes accessing the affected_root_keys property on the diff object returned by DeepDiff fails when one of the dicts is empty
43-
- In version 8.0.1, accessing the affected_root_keys property on the diff object returned by DeepDiff fails when one of the dicts is empty #508
43+
- In version 8.1.0, accessing the affected_root_keys property on the diff object returned by DeepDiff fails when one of the dicts is empty #508
4444

4545
DeepDiff 8-0-1
4646

deepdiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""This module offers the DeepDiff, DeepSearch, grep, Delta and DeepHash classes."""
22
# flake8: noqa
3-
__version__ = '8.0.1'
3+
__version__ = '8.1.0'
44
import logging
55

66
if __name__ == '__main__':

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
# built documents.
6262
#
6363
# The short X.Y version.
64-
version = '8.0.1'
64+
version = '8.1.0'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '8.0.1'
66+
release = '8.1.0'
6767

6868
load_dotenv(override=True)
6969
DOC_VERSION = os.environ.get('DOC_VERSION', version)

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
7-
DeepDiff 8.0.1 documentation!
7+
DeepDiff 8.1.0 documentation!
88
=============================
99

1010
*******
@@ -52,7 +52,7 @@ DeepDiff v8-1-0
5252
- to_dict() method chokes on standard json.dumps() kwargs #490
5353
- Fixes accessing the affected_root_keys property on the diff object
5454
returned by DeepDiff fails when one of the dicts is empty
55-
- In version 8.0.1, accessing the affected_root_keys property on the
55+
- In version 8.1.0, accessing the affected_root_keys property on the
5656
diff object returned by DeepDiff fails when one of the dicts is
5757
empty #508
5858

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 8.0.1
2+
current_version = 8.1.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if os.environ.get('USER', '') == 'vagrant':
1111
del os.link
1212

13-
version = '8.0.1'
13+
version = '8.1.0'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)