Skip to content

Commit 07374ce

Browse files
committed
dev: prepare v1.25.1
GIT_TAG=v1.25.1 make README.md
1 parent c0618b0 commit 07374ce

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ There is the most valuable changes log:
33

44
### April 2020
55

6-
1. Add new linters: `testpackage`, `nestif`, `godot`, `gomodguard`
6+
1. Add new linters: `testpackage`, `nestif`, `godot`, `gomodguard`, `asciicheck`
77
2. Add github actions output format
8-
3. Update linters: `wsl`
8+
3. Update linters: `wsl`, `gomodguard`, `gosec`
99
4. Support `disabled-tags` setting for `gocritic`
1010
5. Mitigate OOM and "failed prerequisites"
1111
6. Self-isolate due to unexpected pandemics
12+
7. Support case-sensitive excludes
13+
8. Allow granular re-enabling excludes by ID, e.g. `EXC0002`
1214

1315
### September 2019
1416

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,17 @@ use deprecated option `--enable-all` and a new linter is added or even without `
7373

7474
It's highly recommended to install a specific version of golangci-lint available on the [releases page](https://github.com/golangci/golangci-lint/releases).
7575

76-
Here is the recommended way to install golangci-lint v1.25.0:
76+
Here is the recommended way to install golangci-lint v1.25.1:
7777

7878
```bash
7979
# binary will be $(go env GOPATH)/bin/golangci-lint
80-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.25.0
80+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.25.1
8181

8282
# or install it into ./bin/
83-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.25.0
83+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.25.1
8484

8585
# In alpine linux (as it does not come with curl by default)
86-
wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.25.0
86+
wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.25.1
8787

8888
golangci-lint --version
8989
```
@@ -103,15 +103,15 @@ brew upgrade golangci/tap/golangci-lint
103103
### Docker
104104

105105
```bash
106-
docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.25.0 golangci-lint run -v
106+
docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.25.1 golangci-lint run -v
107107
```
108108

109109
### Go
110110

111111
Go source installations are supported for the two most recent Go releases.
112112

113113
```bash
114-
GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/[email protected].0
114+
GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/[email protected].1
115115
```
116116

117117
## Trusted By
@@ -1306,12 +1306,14 @@ There is the most valuable changes log:
13061306
13071307
### April 2020
13081308
1309-
1. Add new linters: `testpackage`, `nestif`, `godot`, `gomodguard`
1309+
1. Add new linters: `testpackage`, `nestif`, `godot`, `gomodguard`, `asciicheck`
13101310
2. Add github actions output format
1311-
3. Update linters: `wsl`
1311+
3. Update linters: `wsl`, `gomodguard`, `gosec`
13121312
4. Support `disabled-tags` setting for `gocritic`
13131313
5. Mitigate OOM and "failed prerequisites"
13141314
6. Self-isolate due to unexpected pandemics
1315+
7. Support case-sensitive excludes
1316+
8. Allow granular re-enabling excludes by ID, e.g. `EXC0002`
13151317
13161318
### September 2019
13171319

0 commit comments

Comments
 (0)