diff --git a/CHANGELOG.md b/CHANGELOG.md index ce43bf4..4f642e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 2.1.0 + +### Exciting New Features 🎉 + +* feature: fetch 100 results per page by @anomiex in https://github.com/softprops/turnstyle/pull/39 +* feature: wait for queued runs and an option to refresh runs from GitHub API by @vigneshmsft in https://github.com/softprops/turnstyle/pull/31 + +### Bug fixes 🐛 +* fix: ignore inconsistent runs that have a status set to 'in_progress' but conclusion is 'success' by @gustaff-weldon in https://github.com/softprops/turnstyle/pull/50 + +## 2.0.0 + +* Explain required GITHUB_TOKEN permissions by @chadxzs in https://github.com/softprops/turnstyle/pull/40 +* Upgrade dependencies, add debug logs by @roryabraham in https://github.com/softprops/turnstyle/pull/46 +* feat: bump action to use node20 runtime by @chenrui333 in https://github.com/softprops/turnstyle/pull/55 + ## 0.1.5 * Added feature to set the output `force_continued=true` when using `continue-after-seconds` so that only a subset of future steps can be skipped. diff --git a/package-lock.json b/package-lock.json index 0c893f2..5310406 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "turnstyle", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "turnstyle", - "version": "2.0.0", + "version": "2.1.0", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", diff --git a/package.json b/package.json index b99202d..64489ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "turnstyle", - "version": "2.0.0", + "version": "2.1.0", "private": true, "description": "GitHub Action for limiting one workflow to complete at a time", "main": "lib/main.js",