Skip to content

Commit

Permalink
Fix CHANGELOG typo in Enhacements
Browse files Browse the repository at this point in the history
Also, fix the CHANGELOG generator program
  • Loading branch information
2opremio committed Jan 13, 2020
1 parent 61f0878 commit d7fc259
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Instead, make sure to output cleartext manifests by explicitly invoking the
This release also adds the new `fluxd` flag `--k8s-default-namespace`
which overrides the namespace used for manifests which omit it.

### Enhacements
### Enhancements

- Add support for SOPS [fluxcd/flux#2580][]
- Add `--k8s-default-namespace` flag to override default namespace
Expand Down Expand Up @@ -126,7 +126,7 @@ numerous new end-to-end tests have been added.
- Ignore timestamp labels during sorting and release of images [fluxcd/flux#2594][]
- Security: Stop showing value of `GIT_AUTHKEY` in the `fluxctl` output [fluxcd/flux#2549][]

### Enhacements
### Enhancements

- Improve experience with `.flux.yaml` files
fluxcd/flux#{[2565][fluxcd/flux#2565], [2603][fluxcd/flux#2603],
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/changelog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func main() {
gitHubOrg := pflag.String("gh-org", "fluxcd", "GitHub organization of the repository for which to generate the changelog entry")
gitHubRepo := pflag.String("gh-repo", "flux", "GitHub repository for which to generate the changelog entry")
excludeLabelStrings := pflag.StringSlice("exclude-labels", []string{"helm-chart"}, "Exclude pull requests tagged with any of these labels")
sectionSpecStrings := pflag.StringSlice("section-spec", []string{"bug:Fixes", "enhacement:Enhacement", "docs:Documentation"}, "`label:Title` section specifications. `label:Title` indicates to create a section with `Title` in which to include all the pull requests tagged with label `label`")
sectionSpecStrings := pflag.StringSlice("section-spec", []string{"bug:Fixes", "enhacement:Enhancements", "docs:Documentation"}, "`label:Title` section specifications. `label:Title` indicates to create a section with `Title` in which to include all the pull requests tagged with label `label`")
pflag.Parse()

token := os.Getenv("GITHUB_TOKEN")
Expand Down

0 comments on commit d7fc259

Please sign in to comment.