Skip to content

Commit d008aa4

Browse files
authored
Release version v2.0.0 (#114)
1 parent afef5d8 commit d008aa4

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22

33
### Added
44

5-
- Create flag links will be on by default
5+
### Changed
6+
7+
### Fixed
8+
9+
## 2.0.0
10+
11+
### Added
12+
13+
- [Breaking change] Create flag links will be on by default. Ensure your access token has the required `createFlagLink` role.
614

715
### Changed
816

917
- Enable scanning github workflow files for flag references. [More info](https://github.com/launchdarkly/ld-find-code-refs/pull/441)
1018

11-
### Fixed
12-
1319
## 1.3.0
1420

1521
### Added
@@ -21,8 +27,6 @@
2127
- Update info message for removed, but not extinct flags
2228
- Update dependencies
2329

24-
### Fixed
25-
2630
## 1.2.0
2731

2832
### Added

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Follow instructions to [publish a release to the GitHub Marketplace](https://doc
2828

2929
We use [semantic versioning](https://semver.org/)_ AND a major version release tag for users of the action
3030

31-
Example latest release of v1.1.1 will also be available at tag v1.
31+
Example: latest release of v1.3.0 will also be available at tag v1.

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,13 @@ jobs:
3737
- name: Checkout
3838
uses: actions/checkout@v4
3939
- name: Find flags
40-
uses: launchdarkly/find-code-references-in-pull-request@v1
40+
uses: launchdarkly/find-code-references-in-pull-request@v2
4141
id: find-flags
4242
with:
4343
project-key: default
4444
environment-key: production
4545
access-token: ${{ secrets.LD_ACCESS_TOKEN }}
4646
repo-token: ${{ secrets.GITHUB_TOKEN }}
47-
create-flag-links: true
4847
```
4948
5049
Use outputs in workflow:
@@ -60,14 +59,13 @@ jobs:
6059
- name: Checkout
6160
uses: actions/checkout@v4
6261
- name: Find flags
63-
uses: launchdarkly/find-code-references-in-pull-request@v1
62+
uses: launchdarkly/find-code-references-in-pull-request@v2
6463
id: find-flags
6564
with:
6665
project-key: default
6766
environment-key: production
6867
access-token: ${{ secrets.LD_ACCESS_TOKEN }}
6968
repo-token: ${{ secrets.GITHUB_TOKEN }}
70-
create-flag-links: true
7169

7270
# Add or remove labels on PRs if any flags have changed
7371
- name: Add label

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
const Version = "1.3.0"
3+
const Version = "2.0.0"

0 commit comments

Comments
 (0)