diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 0db4c77..895bf0e 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.3" + ".": "2.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index af44643..21d0106 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [2.0.0](https://github.com/jimeh/release-please-manifest-action/compare/v1.0.3...v2.0.0) (2025-03-07) + + +### ⚠ BREAKING CHANGES + +* **input:** rename `default-branch` input to `target-branch` +* **input:** replaced `installation-id` input with `installation-retrieval-mode` +* **output:** rename `release-please` output to `raw` + +### Features + +* **deps:** upgrade release-please-action and github-app-token to latest major versions ([4a3aba9](https://github.com/jimeh/release-please-manifest-action/commit/4a3aba93da18573def6f5583082327e81c38c6d4)) +* **input:** rename `default-branch` input to `target-branch` ([4a3aba9](https://github.com/jimeh/release-please-manifest-action/commit/4a3aba93da18573def6f5583082327e81c38c6d4)) +* **input:** replaced `installation-id` input with `installation-retrieval-mode` ([4a3aba9](https://github.com/jimeh/release-please-manifest-action/commit/4a3aba93da18573def6f5583082327e81c38c6d4)) +* **output:** rename `release-please` output to `raw` ([4a3aba9](https://github.com/jimeh/release-please-manifest-action/commit/4a3aba93da18573def6f5583082327e81c38c6d4)) + ## [1.0.3](https://github.com/jimeh/release-please-manifest-action/compare/v1.0.2...v1.0.3) (2024-05-13) diff --git a/README.md b/README.md index 52cd942..7ad00df 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' steps: - - uses: jimeh/release-please-manifest-action@v1 + - uses: jimeh/release-please-manifest-action@v2 ``` @@ -119,7 +119,7 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' steps: - - uses: jimeh/release-please-manifest-action@v1 + - uses: jimeh/release-please-manifest-action@v2 with: token: ${{ secrets.RELEASE_PAT_TOKEN }} ``` @@ -178,7 +178,7 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' steps: - - uses: jimeh/release-please-manifest-action@v1 + - uses: jimeh/release-please-manifest-action@v2 with: app-id: ${{ secrets.RELEASE_BOT_APP_ID }} private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}