From 6cf410b319bc253dd21482d07a58bf5c7bc2909f Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Tue, 27 Aug 2024 12:19:24 +0100 Subject: [PATCH] Update golangci-lint --- .golangci.yml | 1 + Makefile | 2 +- VERSION | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 3569445..d842918 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -70,3 +70,4 @@ linters: - tagliatelle # Checks the struct tags. [fast: true, auto-fix: false] - testpackage # linter that makes you use a separate _test package [fast: true, auto-fix: false] - varnamelen # checks that the length of a variable's name matches its scope [fast: false, auto-fix: false] + - exportloopref # deprecated diff --git a/Makefile b/Makefile index bd82e28..5d122a2 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ GOFMT=$(shell which gofmt) GOTEST=GOPATH=$(GOPATH) $(shell which gotest) GODOC=GOPATH=$(GOPATH) $(shell which godoc) GOLANGCILINT=$(BINUTIL)/golangci-lint -GOLANGCILINTVERSION=v1.60.1 +GOLANGCILINTVERSION=v1.60.3 # Directory containing the source code SRCDIR=./ diff --git a/VERSION b/VERSION index b668c3b..8fc77d0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.16 +1.0.17