Skip to content

Commit 745ecb9

Browse files
authored
build(deps): bump go.tmz.dev/musttag from 0.5.0 to 0.6.0 (#3791)
1 parent 1f089a3 commit 745ecb9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ There is the most valuable changes log:
8787

8888
1. new linters
8989
* `ginkgolinter`: https://github.com/nunnatsa/ginkgolinter
90-
* `musttag`: https://github.com/junk1tm/musttag
90+
* `musttag`: https://github.com/tmzane/musttag
9191
* `gocheckcompilerdirectives`: https://github.com/leighmcculloch/gocheckcompilerdirectives
9292
2. updated linters
9393
* `bodyclose`: to HEAD

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ The Core Team has the following responsibilities:
181181
<td align="center"><a href="https://github.com/barthr?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/9822478?u=c159fa0a22133fabb6a8468ed2372273f60cc7d9&v=4" width="100px;" alt=""/><br /><sub><b>Bart</b></sub></a></td>
182182
<td align="center"><a href="https://github.com/neha-viswanathan?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/12013126?u=479684c936cc8b80f122fdede3f4afc4ceb80136&v=4" width="100px;" alt=""/><br /><sub><b>Neha Viswanathan</b></sub></a></td>
183183
<td align="center"><a href="https://github.com/dbraley?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/2067019?u=47d3d161a65b877714779c39d2eb6dc686d427ec&v=4" width="100px;" alt=""/><br /><sub><b>David Braley</b></sub></a></td>
184-
<td align="center"><a href="https://github.com/junk1tm?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/73077675?u=2e0a95650ef31e86c4b40b8d041794f6752aed3a&v=4" width="100px;" alt=""/><br /><sub><b>Tom</b></sub></a></td>
184+
<td align="center"><a href="https://github.com/tmzane?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/73077675?u=2e0a95650ef31e86c4b40b8d041794f6752aed3a&v=4" width="100px;" alt=""/><br /><sub><b>Tom</b></sub></a></td>
185185
<td align="center"><a href="https://github.com/cbandy?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/106560?v=4" width="100px;" alt=""/><br /><sub><b>Chris Bandy</b></sub></a></td>
186186
<td align="center"><a href="https://patrickkuca.com?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/9790383?u=f3ee6bab4997260734040e0119d4cb35810973d7&v=4" width="100px;" alt=""/><br /><sub><b>Patrick Kuca</b></sub></a></td>
187187
<td align="center"><a href="https://dev.to/vearutop?utm_source=golangci-lint-contributors"><img src="https://avatars.githubusercontent.com/u/1381436?v=4" width="100px;" alt=""/><br /><sub><b>Viacheslav Poturaev</b></sub></a></td>

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ require (
5454
github.com/jingyugao/rowserrcheck v1.1.1
5555
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af
5656
github.com/julz/importas v0.1.0
57-
github.com/junk1tm/musttag v0.5.0
5857
github.com/kisielk/errcheck v1.6.3
5958
github.com/kkHAIKE/contextcheck v1.1.4
6059
github.com/kulti/thelper v0.6.3
@@ -113,6 +112,7 @@ require (
113112
github.com/yeya24/promlinter v0.2.0
114113
github.com/ykadowak/zerologlint v0.1.1
115114
gitlab.com/bosi/decorder v0.2.3
115+
go.tmz.dev/musttag v0.6.0
116116
golang.org/x/tools v0.8.0
117117
gopkg.in/yaml.v3 v3.0.1
118118
honnef.co/go/tools v0.4.3

go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/musttag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package golinters
22

33
import (
4-
"github.com/junk1tm/musttag"
4+
"go.tmz.dev/musttag"
55
"golang.org/x/tools/go/analysis"
66

77
"github.com/golangci/golangci-lint/pkg/config"

pkg/lint/lintersdb/manager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
655655
WithSince("v1.51.0").
656656
WithLoadForGoAnalysis().
657657
WithPresets(linter.PresetStyle, linter.PresetBugs).
658-
WithURL("https://github.com/junk1tm/musttag"),
658+
WithURL("https://github.com/tmzane/musttag"),
659659

660660
linter.NewConfig(golinters.NewNakedret(nakedretCfg)).
661661
WithSince("v1.19.0").

0 commit comments

Comments
 (0)