diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0f24e47..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.6" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e53ef22..708c5b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # tap2junit changelog +## [0.2.0](https://github.com/nodejs/tap2junit/compare/v0.1.6...v0.2.0) (2024-06-17) + + +### Features + +* add missing release-please files ([efaf634](https://github.com/nodejs/tap2junit/commit/efaf634126c82edb551b89391a86a9bf8d56dca5)) + +### Fixes + +* fix missing stack property ([4ddd24](https://github.com/nodejs/tap2junit/commit/4ddd2472a94b6153d7f298fc63fde04980903f66)) + ### 0.1.6 * Support for parsing YAML blocks * Add option to override test suite name diff --git a/tap2junit/__init__.py b/tap2junit/__init__.py index 0a8da88..d3ec452 100644 --- a/tap2junit/__init__.py +++ b/tap2junit/__init__.py @@ -1 +1 @@ -__version__ = "0.1.6" +__version__ = "0.2.0"