diff --git a/CHANGELOG.md b/CHANGELOG.md index 9113136..20a2746 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.1] - 2025-12-25 + ### Added - Path population on ZonIssue instances for better tracking what caused an error. @@ -75,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added base source code files for the project. - Base `README.md` file. -[Unreleased]: https://github.com/Naapperas/zon/compare/v3.0.0...HEAD +[Unreleased]: https://github.com/Naapperas/zon/compare/v3.0.1...HEAD +[3.0.1]: https://github.com/Naapperas/zon/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/Naapperas/zon/compare/v2.0.1...v3.0.0 [2.0.1]: https://github.com/Naapperas/zon/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/Naapperas/zon/compare/v1.1.0...v2.0.0 diff --git a/pyproject.toml b/pyproject.toml index 25fb16a..c2f7563 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zon" -version = "3.0.0" +version = "3.0.1" authors = [ { name="Nuno Pereira", email="nunoafonso2002@gmail.com" }, ] diff --git a/zon/__init__.py b/zon/__init__.py index 240d09e..0e71ec3 100644 --- a/zon/__init__.py +++ b/zon/__init__.py @@ -6,7 +6,7 @@ # Why is this needed even? from __future__ import annotations -__version__ = "3.0.0" +__version__ = "3.0.1" __author__ = "Nuno Pereira" __email__ = "nunoafonso2002@gmail.com" __license__ = "MIT"