diff --git a/CHANGELOG.md b/CHANGELOG.md index d2d5b75..c9f46c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [7.0.0](https://github.com/LeeeeT/valtypes/compare/v6.0.1...v7.0.0) (2023-12-31) + + +### ⚠ BREAKING CHANGES + +* use exception groups for composite errors ([#49](https://github.com/LeeeeT/valtypes/issues/49)) + +### Features + +* use exception groups for composite errors ([#49](https://github.com/LeeeeT/valtypes/issues/49)) ([1c53071](https://github.com/LeeeeT/valtypes/commit/1c53071566348a09fd2072c461b58cf899dcd07e)) + ## [6.0.1](https://github.com/LeeeeT/valtypes/compare/v6.0.0...v6.0.1) (2022-11-09) diff --git a/pyproject.toml b/pyproject.toml index 3a28a4f..c53e1e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "valtypes" -version = "6.0.1" +version = "7.0.0" description = "Parsing in Python has never been easier" authors = ["LeeeeT ", "GitHub Copilot"] license = "Unlicense" diff --git a/valtypes/__init__.py b/valtypes/__init__.py index e6315e0..848a51f 100644 --- a/valtypes/__init__.py +++ b/valtypes/__init__.py @@ -3,7 +3,7 @@ from .collection import Collection from .parsing import parse_json -__version__ = "6.0.1" +__version__ = "7.0.0" __all__ = [ "Collection",