Skip to content

Commit

Permalink
fix: Avoid deprecated properties in goreleaser integration config
Browse files Browse the repository at this point in the history
`changelog.skip` has been deprecated in favor of `changelog.disable` since 2024-01-14

cf. https://goreleaser.com/deprecations/#changelogskip
  • Loading branch information
reitzig committed Feb 4, 2024
1 parent 76fdd65 commit e713c2b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changes/unreleased/Fixed-20240204-145414.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
kind: Fixed
body: Avoid deprecated properties in goreleaser integration config
time: 2024-02-04T14:54:14.184075613+01:00
custom:
Issue: "603"
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ checksum:
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
skip: false
disable: false
2 changes: 1 addition & 1 deletion docs/content/integrations/goreleaser.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ First make sure GoReleaser will even generate any changelog by setting skip to f

```yaml
changelog:
skip: false
disable: false
```
By default GoReleaser expects to release the current tag but we can let GitHub
Expand Down

0 comments on commit e713c2b

Please sign in to comment.