diff --git a/.version b/.version index 0d91a54..9e11b32 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.3.0 +0.3.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 16e974e..e776cc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ Versioning]. ## [Unreleased] +- _No changes yet_ + +## [0.3.1] - 2023-07-16 + - Add input `not:` to exclude certain tools from being updated to each action. - Configure actions to exit immediately when an error occurs. diff --git a/README.md b/README.md index 56f98d2..cebcae9 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The first stable release (if reached) will be v1.0.0. ## Usage ```yml -- uses: ericcornelissen/tool-versions-update-action@v0.3.0 +- uses: ericcornelissen/tool-versions-update-action@v0.3.1 with: # The maximum number of tools to update. 0 indicates no maximum. # @@ -65,7 +65,7 @@ jobs: # run: | # asdf plugin add example https://github.com/ericcornelissen/asdf-example - name: Update tooling - uses: ericcornelissen/tool-versions-update-action/commit@v0.3.0 + uses: ericcornelissen/tool-versions-update-action/commit@v0.3.1 with: max: 2 - name: Log tooling changes diff --git a/commit/README.md b/commit/README.md index 43644b1..a146e15 100644 --- a/commit/README.md +++ b/commit/README.md @@ -6,7 +6,7 @@ file through a commit. ## Usage ```yml -- uses: ericcornelissen/tool-versions-update-action/commit@v0.3.0 +- uses: ericcornelissen/tool-versions-update-action/commit@v0.3.1 with: # The branch to commit to. # @@ -57,7 +57,7 @@ jobs: contents: write steps: - name: Update tooling - uses: ericcornelissen/tool-versions-update-action/commit@v0.3.0 + uses: ericcornelissen/tool-versions-update-action/commit@v0.3.1 with: max: 2 ``` diff --git a/pr/README.md b/pr/README.md index 665523d..4131120 100644 --- a/pr/README.md +++ b/pr/README.md @@ -6,7 +6,7 @@ file through a Pull Request. ## Usage ```yml -- uses: ericcornelissen/tool-versions-update-action/pr@v0.3.0 +- uses: ericcornelissen/tool-versions-update-action/pr@v0.3.1 with: # A comma or newline-separated list of labels. # @@ -58,7 +58,7 @@ jobs: pull-requests: write steps: - name: Update tooling - uses: ericcornelissen/tool-versions-update-action/pr@v0.3.0 + uses: ericcornelissen/tool-versions-update-action/pr@v0.3.1 with: max: 2 ```