diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 895bf0e..969d3db 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "2.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1917482..4c1e8ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.1.0](https://github.com/jimeh/update-tags-action/compare/v2.0.0...v2.1.0) (2025-10-28) + + +### Features + +* **tag:** add support for annotated tags and improved tag handling ([40c0c24](https://github.com/jimeh/update-tags-action/commit/40c0c24c3478fe96765282b3f82b7f72696f0e92)), closes [#7](https://github.com/jimeh/update-tags-action/issues/7) + + +### Bug Fixes + +* **when_exists:** fail-fast if tags exist if `when_exists` is `fail` ([40c0c24](https://github.com/jimeh/update-tags-action/commit/40c0c24c3478fe96765282b3f82b7f72696f0e92)) + ## [2.0.0](https://github.com/jimeh/update-tags-action/compare/v1.0.1...v2.0.0) (2025-10-27) diff --git a/README.md b/README.md index d7214e0..51ca6bb 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ to move its own major and minor tags. ```yaml - uses: jimeh/update-tags-action@v2 with: - tags: v2,v2.0 + tags: v2,v2.1 ``` ```yaml @@ -35,7 +35,7 @@ to move its own major and minor tags. with: tags: | v2 - v2.0 + v2.1 ``` diff --git a/package-lock.json b/package-lock.json index 60f4e4e..99728c6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "update-tags-action", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "update-tags-action", - "version": "2.0.0", + "version": "2.1.0", "dependencies": { "@actions/core": "^1.11.1", "@actions/github": "^6.0.1", diff --git a/package.json b/package.json index 07e6273..fd28204 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "update-tags-action", - "version": "2.0.0", + "version": "2.1.0", "author": "jimeh", "type": "module", "private": true,