Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version v2.0.0 #114

Merged
merged 4 commits into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -21,8 +27,6 @@
- Update info message for removed, but not extinct flags
- Update dependencies

### Fixed

## 1.2.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "1.3.0"
const Version = "2.0.0"