Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 5e1fa65

Browse files
authored
Release 1.2.0 (#142)
1 parent 83844e9 commit 5e1fa65

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-go@v5
1616
with:
17-
go-version: '1.22'
17+
go-version: '1.23'
1818
cache-dependency-path: '**/go.sum'
1919
- run: ./goyek.sh -v all diff
2020
- name: Upload HTML coverage
@@ -39,6 +39,7 @@ jobs:
3939
- '1.20'
4040
- '1.21'
4141
- '1.22'
42+
- '1.23'
4243
runs-on: ubuntu-latest
4344
steps:
4445
- uses: actions/checkout@v4

.golangci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ linters-settings:
44
goimports:
55
local-prefixes: github.com/fluentassert/verify
66
govet:
7-
check-shadowing: true
7+
enable-all: true
8+
disable:
9+
- fieldalignment
10+
- nilness
811
misspell:
912
locale: US
10-
ignore-words:
11-
- importas
1213
nolintlint:
1314
allow-leading-space: false # require machine-readable nolint directives (with no leading space)
1415
allow-unused: false # report any unused nolint directives
@@ -24,21 +25,20 @@ linters:
2425
enable:
2526
- dogsled
2627
- errcheck
27-
- exportloopref
2828
- gochecknoinits
2929
- gocritic
3030
- goconst
3131
- gocyclo
3232
- gofumpt
3333
- goimports
3434
- revive
35-
- gomnd
3635
- goprintffuncname
3736
- gosec
3837
- gosimple
3938
- govet
4039
- ineffassign
4140
- misspell
41+
- mnd
4242
- nolintlint
4343
- staticcheck
4444
- stylecheck
@@ -49,5 +49,5 @@ linters:
4949
- whitespace
5050

5151
issues:
52-
# enable issues excluded by default
53-
exclude-use-default: false
52+
exclude:
53+
- EXC0001

.vscode/settings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"[go]": {
33
"editor.formatOnSave": true,
44
"editor.codeActionsOnSave": {
5-
"source.organizeImports": true,
5+
"source.organizeImports": "explicit"
66
},
77
},
88
"[go.mod]": {
99
"editor.formatOnSave": true,
1010
"editor.codeActionsOnSave": {
11-
"source.organizeImports": true,
11+
"source.organizeImports": "explicit"
1212
},
1313
},
1414
"gopls": {

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this library are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/fluentassert/verify/compare/v1.1.0...HEAD)
8+
## [Unreleased](https://github.com/fluentassert/verify/compare/v1.2.0...HEAD)
9+
10+
## [1.2.0](https://github.com/fluentassert/verify/releases/tag/v1.2.0) - 2024-09-10
911

1012
### Added
1113

build/mdlint.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var mdlint = goyek.Define(goyek.Task{
2424
if len(mdFiles) == 0 {
2525
a.Skip("no .md files")
2626
}
27-
dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.36.0"
27+
dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.41.0"
2828
cmd.Exec(a, "docker run --rm -v '"+curDir+":/workdir' "+dockerImage+" "+strings.Join(mdFiles, " "))
2929
},
3030
})

0 commit comments

Comments
 (0)