diff --git a/CHANGELOG.md b/CHANGELOG.md index 60f51dc..1ac4394 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.2.0 (2023-05-04) + +### Incompatible changes + +- Require python 3.7+ #66 (thanks to @ssbarnea) + +### Other changes + +- Fix publish package workflow #74 +- Handle cases where pytest itself fails #70 (thanks to @edgarrmondragon) +- Adopt PEP-621 for packaging #65 (thanks to @ssbarnea) +- Bump pre-commit/action from 2.0.0 to 3.0.0 #56 + ## 0.1.8 (2022-12-20) No functionality change. diff --git a/pyproject.toml b/pyproject.toml index baf4fd5..69c327f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] # https://peps.python.org/pep-0621/#readme requires-python = ">=3.7" -version = "0.1.8" +version = "0.2.0" name = "pytest-github-actions-annotate-failures" description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions" readme = "README.md"