diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d618b0..f8e7c40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.0a7] - 2025-01-29 + - Correct stringified name of ParserError exception. +- Support Python 3.13. ## [0.1.0a6] - 2024-11-05 diff --git a/pyproject.toml b/pyproject.toml index 52868f3..e699d43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ ] # Do not manually edit the version, use `make version_{type}` instead. # This should match the version in the [tool.bumpversion] section. -version = "0.1.0a6" +version = "0.1.0a7" dependencies = [] [project.urls] @@ -134,7 +134,7 @@ filterwarnings = "error" [tool.bumpversion] # Do not manually edit the version, use `make version_{type}` instead. # This should match the version in the [project] section. -current_version = "0.1.0a6" +current_version = "0.1.0a7" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}"