From 6a33718be1e04794bb777fd6e7dddce0211118b5 Mon Sep 17 00:00:00 2001 From: Jaz White Date: Mon, 5 Feb 2024 11:19:43 -0500 Subject: [PATCH] Release v1.1.1 (#94) --- CHANGELOG.md | 9 +++++++++ DEVELOPMENT.md | 6 +++++- README.md | 4 ++-- internal/version/version.go | 2 +- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae2d6db6..09747b0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ ### Fixed +## 1.1.1 + +### Changed + +- Update dependencies + +### Fixed +- Incorrect scanning for extinctions of removed flags led to false positives + ## 1.1.0 ### Added diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 043731a0..ffc8c2ba 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -18,10 +18,14 @@ _Read more: [Example commands](https://github.com/nektos/act#example-commands)_ ## Publishing a release +Make sure [CHANGELOG.md](CHANGELOG.md) and [version](internal/version/version.go) are updated + Follow instructions to [publish a release to the GitHub Marketplace](https://docs.github.com/en/actions/creating-actions/publishing-actions-in-github-marketplace#publishing-an-action). **Publishing** is a manual step even if automation is used to create a release. ### Versioning -_Read more: [Semantic versioning](https://semver.org/)_ +We use [semantic versioning](https://semver.org/)_ AND a major version release tag for users of the action + +Example latest release of v1.1.1 will also be available at tag v1. diff --git a/README.md b/README.md index 3529d413..74267612 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Find flags - uses: launchdarkly/find-code-references-in-pull-request@v1.1.0 + uses: launchdarkly/find-code-references-in-pull-request@v1 id: find-flags with: project-key: default @@ -53,7 +53,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Find flags - uses: launchdarkly/find-code-references-in-pull-request@v1.1.0 + uses: launchdarkly/find-code-references-in-pull-request@v1 id: find-flags with: project-key: default diff --git a/internal/version/version.go b/internal/version/version.go index 003a62bb..cedc13a3 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.1.0" +const Version = "1.1.1"