diff --git a/CHANGELOG.md b/CHANGELOG.md index 546fbb63..91433db3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,20 @@ ### Added -- Create flag links will be on by default +### Changed + +### Fixed + +## 2.0.0 + +### Added + +- [Breaking change] Create flag links will be on by default. Ensure your access token has the required `createFlagLink` role. ### Changed - Enable scanning github workflow files for flag references. [More info](https://github.com/launchdarkly/ld-find-code-refs/pull/441) -### Fixed - ## 1.3.0 ### Added @@ -21,8 +27,6 @@ - Update info message for removed, but not extinct flags - Update dependencies -### Fixed - ## 1.2.0 ### Added diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index ffc8c2ba..1d2fc8ff 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -28,4 +28,4 @@ Follow instructions to [publish a release to the GitHub Marketplace](https://doc 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. +Example: latest release of v1.3.0 will also be available at tag v1. diff --git a/README.md b/README.md index bd08eb85..32756fff 100644 --- a/README.md +++ b/README.md @@ -37,14 +37,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Find flags - uses: launchdarkly/find-code-references-in-pull-request@v1 + uses: launchdarkly/find-code-references-in-pull-request@v2 id: find-flags with: project-key: default environment-key: production access-token: ${{ secrets.LD_ACCESS_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }} - create-flag-links: true ``` Use outputs in workflow: @@ -60,14 +59,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Find flags - uses: launchdarkly/find-code-references-in-pull-request@v1 + uses: launchdarkly/find-code-references-in-pull-request@v2 id: find-flags with: project-key: default environment-key: production access-token: ${{ secrets.LD_ACCESS_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }} - create-flag-links: true # Add or remove labels on PRs if any flags have changed - name: Add label diff --git a/internal/version/version.go b/internal/version/version.go index d88b5963..1f029d52 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.3.0" +const Version = "2.0.0"