From 6289323a5d48cc876b8d3207e05d9b4d20888883 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 12:25:48 +0000 Subject: [PATCH] chore(main): release 7.0.0 --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- valtypes/__init__.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2d5b75..7acabba 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) (2024-02-12) + + +### ⚠ 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 fc82026..f731a39 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",