From 297dcaa1f2650f7c9e96aeefdff8f478468adffb Mon Sep 17 00:00:00 2001 From: Alec Rust Date: Sun, 14 Apr 2024 22:55:38 +0100 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d82cfa..94f1775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. +## [v1.1.0](https://github.com/AlecRust/wp-tut-updater-action/releases/tag/v1.1.0) + +> 14 April 2024 + +- Fix lint [`845b5b1`](https://github.com/AlecRust/wp-tut-updater-action/commit/845b5b11d533758a4d9bfef253c6f865a0b76092) +- Tidy README [`52fcbef`](https://github.com/AlecRust/wp-tut-updater-action/commit/52fcbef92eff5daa0a78ad259f45cc9fb81c9b00) +- Add create-pr option [`09e600b`](https://github.com/AlecRust/wp-tut-updater-action/commit/09e600b48357a7b969aabe510defb820a08ceffe) +- Tidy CI and README [`609d450`](https://github.com/AlecRust/wp-tut-updater-action/commit/609d450ba1e6c8398f2843657192131dd47c78b2) +- Fix Markdown linting [`51ad742`](https://github.com/AlecRust/wp-tut-updater-action/commit/51ad742b22c5b89b5ce874dfaf324b521a2fe162) +- Simplify release-it config [`a903e1a`](https://github.com/AlecRust/wp-tut-updater-action/commit/a903e1a59c6a835a75c6a0b7d63dbf22f35b84a0) +- Add changelog/release tooling [`1f7e6ab`](https://github.com/AlecRust/wp-tut-updater-action/commit/1f7e6ab5d3460a3997eef36dc8815271038fd5e7) +- Improve branch name [`d553bde`](https://github.com/AlecRust/wp-tut-updater-action/commit/d553bde231fd49b94033a66075a3516f49c4d700) +- Rename bundle script to build [`78595c2`](https://github.com/AlecRust/wp-tut-updater-action/commit/78595c2c707a26de141f2c4f5d8039196dd806b4) +- Tidy README [`15aa01c`](https://github.com/AlecRust/wp-tut-updater-action/commit/15aa01c39f547f900f3949c4f17c960539325bd6) +- Improve logging when no changes [`9b4c428`](https://github.com/AlecRust/wp-tut-updater-action/commit/9b4c428c1d744f7bf089e81edfdbfd850d7dcb1e) +- Update usage in README [`2754508`](https://github.com/AlecRust/wp-tut-updater-action/commit/2754508a3212aad528bad2868298dbc422f14a2e) + ## [v1.0.0](https://github.com/AlecRust/wp-tut-updater-action/releases/tag/v1.0.0) > 14 April 2024 diff --git a/README.md b/README.md index 9d79056..c9ae2d2 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v4 - name: Update "Tested up to" version - uses: AlecRust/wp-tut-updater-action@v1.0.0 + uses: AlecRust/wp-tut-updater-action@v1.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -57,7 +57,7 @@ Optionally you can specify paths to update which will override the default ```yaml - name: Update "Tested up to" version - uses: AlecRust/wp-tut-updater-action@v1.0.0 + uses: AlecRust/wp-tut-updater-action@v1.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -71,7 +71,7 @@ Optionally the action can commit directly to your default branch by setting ```yaml - name: Update "Tested up to" version - uses: AlecRust/wp-tut-updater-action@v1.0.0 + uses: AlecRust/wp-tut-updater-action@v1.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/package-lock.json b/package-lock.json index c502896..35adec7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wp-tut-updater-action", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "wp-tut-updater-action", - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", diff --git a/package.json b/package.json index 63829a0..ed33ab2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "wp-tut-updater-action", "description": "Automate updating your WordPress plugin/theme \"Tested up to\" version.", - "version": "1.0.0", + "version": "1.1.0", "author": "Alec Rust (https://www.alecrust.com/)", "private": true, "homepage": "https://github.com/AlecRust/wp-tut-updater-action",