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