Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

chore(main): release 7.0.0 #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <leeeet@inbox.ru>", "GitHub Copilot"]
license = "Unlicense"
Expand Down
2 changes: 1 addition & 1 deletion valtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .collection import Collection
from .parsing import parse_json

__version__ = "6.0.1"
__version__ = "7.0.0"

__all__ = [
"Collection",
Expand Down