Skip to content

Commit

Permalink
Bump version: 8.0.1 → 8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Dec 16, 2024
1 parent 9c8968f commit 34f4f37
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors:
given-names: "Sep"
orcid: "https://orcid.org/0009-0009-5828-4345"
title: "DeepDiff"
version: 8.0.1
version: 8.1.0
date-released: 2024
url: "https://github.com/seperman/deepdiff"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DeepDiff v 8.0.1
# DeepDiff v 8.1.0

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

Tested on Python 3.8+ and PyPy3.

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

## What is new?

Expand All @@ -40,7 +40,7 @@ DeepDiff 8-1-0
- Fixes to_json() method chokes on standard json.dumps() kwargs such as sort_keys
- to_dict() method chokes on standard json.dumps() kwargs #490
- Fixes accessing the affected_root_keys property on the diff object returned by DeepDiff fails when one of the dicts is empty
- 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
- 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

DeepDiff 8-0-1

Expand Down
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__ = '8.0.1'
__version__ = '8.1.0'
import logging

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

load_dotenv(override=True)
DOC_VERSION = os.environ.get('DOC_VERSION', version)
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
contain the root `toctree` directive.
DeepDiff 8.0.1 documentation!
DeepDiff 8.1.0 documentation!
=============================

*******
Expand Down Expand Up @@ -52,7 +52,7 @@ DeepDiff v8-1-0
- to_dict() method chokes on standard json.dumps() kwargs #490
- Fixes accessing the affected_root_keys property on the diff object
returned by DeepDiff fails when one of the dicts is empty
- In version 8.0.1, accessing the affected_root_keys property on the
- 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

Expand Down
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 = 8.0.1
current_version = 8.1.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
if os.environ.get('USER', '') == 'vagrant':
del os.link

version = '8.0.1'
version = '8.1.0'


def get_reqs(filename):
Expand Down

0 comments on commit 34f4f37

Please sign in to comment.