Skip to content

Commit 15858c2

Browse files
committed
docs: update changelog
1 parent 3d78f64 commit 15858c2

File tree

3 files changed

+45
-3
lines changed

3 files changed

+45
-3
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Thank you for the pull request!
22

3-
Please make sure you didn't directly change `README.md`: it should be changed only by changing `README.tmpl.md` and running `make readme`.
3+
Please make sure you didn't directly change `README.md`: it should be changed only by changing `README.tmpl.md` and running `make README.md`.

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ var (
920920
Also, you can exclude all issues in a file by:
921921
922922
```go
923-
//nolint: unparam
923+
//nolint:unparam
924924
package pkg
925925
```
926926
@@ -1004,6 +1004,27 @@ Thanks to developers and authors of used linters:
10041004
Follow the news and releases on our [twitter](https://twitter.com/golangci) and our [blog](https://medium.com/golangci).
10051005
There is the most valuable changes log:
10061006
1007+
### June 2019
1008+
1009+
1. treat Go source files as a plain text by `misspell`: it allows detecting issues in strings, variable names, etc.
1010+
2. implement richer and more stable auto-fix of `misspell` issues.
1011+
1012+
### May 2019
1013+
1014+
1. Add [bodyclose](https://github.com/timakin/bodyclose) linter.
1015+
2. Support junit-xml output.
1016+
1017+
### April 2019
1018+
1019+
1. Update go-critic, new checkers were added: badCall, dupImports, evalOrder, newDeref
1020+
2. Fix staticcheck panic on packages that do not compile
1021+
3. Make install script work on Windows
1022+
4. Fix compatibility with the latest x/tools version and update golang.org/x/tools
1023+
5. Correct import path of module sourcegraph/go-diff
1024+
6. Fix `max-issues-per-linter` name
1025+
7. Fix linting of preprocessed files (e.g. `*.qtpl.go`, goyacc)
1026+
8. Enable auto-fixing when running via pre-commit
1027+
10071028
### March 2019
10081029
10091030
1. Support the newest `go vet` (with `go/analysis`)

README.tmpl.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ var (
467467
Also, you can exclude all issues in a file by:
468468

469469
```go
470-
//nolint: unparam
470+
//nolint:unparam
471471
package pkg
472472
```
473473

@@ -532,6 +532,27 @@ Thanks to developers and authors of used linters:
532532
Follow the news and releases on our [twitter](https://twitter.com/golangci) and our [blog](https://medium.com/golangci).
533533
There is the most valuable changes log:
534534

535+
### June 2019
536+
537+
1. treat Go source files as a plain text by `misspell`: it allows detecting issues in strings, variable names, etc.
538+
2. implement richer and more stable auto-fix of `misspell` issues.
539+
540+
### May 2019
541+
542+
1. Add [bodyclose](https://github.com/timakin/bodyclose) linter.
543+
2. Support junit-xml output.
544+
545+
### April 2019
546+
547+
1. Update go-critic, new checkers were added: badCall, dupImports, evalOrder, newDeref
548+
2. Fix staticcheck panic on packages that do not compile
549+
3. Make install script work on Windows
550+
4. Fix compatibility with the latest x/tools version and update golang.org/x/tools
551+
5. Correct import path of module sourcegraph/go-diff
552+
6. Fix `max-issues-per-linter` name
553+
7. Fix linting of preprocessed files (e.g. `*.qtpl.go`, goyacc)
554+
8. Enable auto-fixing when running via pre-commit
555+
535556
### March 2019
536557

537558
1. Support the newest `go vet` (with `go/analysis`)

0 commit comments

Comments
 (0)