Skip to content

Commit 6a33718

Browse files
authored
Release v1.1.1 (#94)
1 parent 487ce20 commit 6a33718

4 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@
66

77
### Fixed
88

9+
## 1.1.1
10+
11+
### Changed
12+
13+
- Update dependencies
14+
15+
### Fixed
16+
- Incorrect scanning for extinctions of removed flags led to false positives
17+
918
## 1.1.0
1019

1120
### Added

DEVELOPMENT.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ _Read more: [Example commands](https://github.com/nektos/act#example-commands)_
1818

1919
## Publishing a release
2020

21+
Make sure [CHANGELOG.md](CHANGELOG.md) and [version](internal/version/version.go) are updated
22+
2123
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).
2224

2325
**Publishing** is a manual step even if automation is used to create a release.
2426

2527
### Versioning
2628

27-
_Read more: [Semantic versioning](https://semver.org/)_
29+
We use [semantic versioning](https://semver.org/)_ AND a major version release tag for users of the action
30+
31+
Example latest release of v1.1.1 will also be available at tag v1.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@v3
3333
- name: Find flags
34-
uses: launchdarkly/find-code-references-in-pull-request@v1.1.0
34+
uses: launchdarkly/find-code-references-in-pull-request@v1
3535
id: find-flags
3636
with:
3737
project-key: default
@@ -53,7 +53,7 @@ jobs:
5353
- name: Checkout
5454
uses: actions/checkout@v3
5555
- name: Find flags
56-
uses: launchdarkly/find-code-references-in-pull-request@v1.1.0
56+
uses: launchdarkly/find-code-references-in-pull-request@v1
5757
id: find-flags
5858
with:
5959
project-key: default

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.1.0"
3+
const Version = "1.1.1"

0 commit comments

Comments
 (0)