diff --git a/CHANGELOG.md b/CHANGELOG.md index be24a7065b25..1954497a8e32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ If you value it, consider supporting us, we appreciate it! ❤️ [![Open Collective backers and sponsors](https://img.shields.io/badge/OpenCollective-Donate-blue?logo=opencollective&style=for-the-badge)](https://opencollective.com/golangci-lint) [![GitHub Sponsors](https://img.shields.io/badge/GitHub-Donate-blue?logo=github&style=for-the-badge)](https://github.com/sponsors/golangci) +### v1.63.1 + +1. Linters bug fixes + * `cgi`: invalid reports with cgo + * `gofumpt`: panic with autofix and cgo + ### v1.63.0 1. Enhancements diff --git a/pkg/golinters/gci/gci.go b/pkg/golinters/gci/gci.go index 39ca4100ae28..841ee81b0de5 100644 --- a/pkg/golinters/gci/gci.go +++ b/pkg/golinters/gci/gci.go @@ -38,7 +38,7 @@ func New(settings *config.GciSettings) *goanalysis.Linter { return goanalysis.NewLinter( linterName, - a.Doc, + "Checks if code and import statements are formatted, it makes import statements always deterministic.", []*analysis.Analyzer{a}, nil, ).WithContextSetter(func(lintCtx *linter.Context) {