Skip to content

Commit

Permalink
Release 1.2.0 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared authored Sep 10, 2024
1 parent 83844e9 commit 5e1fa65
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
cache-dependency-path: '**/go.sum'
- run: ./goyek.sh -v all diff
- name: Upload HTML coverage
Expand All @@ -39,6 +39,7 @@ jobs:
- '1.20'
- '1.21'
- '1.22'
- '1.23'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 7 additions & 7 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ linters-settings:
goimports:
local-prefixes: github.com/fluentassert/verify
govet:
check-shadowing: true
enable-all: true
disable:
- fieldalignment
- nilness
misspell:
locale: US
ignore-words:
- importas
nolintlint:
allow-leading-space: false # require machine-readable nolint directives (with no leading space)
allow-unused: false # report any unused nolint directives
Expand All @@ -24,21 +25,20 @@ linters:
enable:
- dogsled
- errcheck
- exportloopref
- gochecknoinits
- gocritic
- goconst
- gocyclo
- gofumpt
- goimports
- revive
- gomnd
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
- misspell
- mnd
- nolintlint
- staticcheck
- stylecheck
Expand All @@ -49,5 +49,5 @@ linters:
- whitespace

issues:
# enable issues excluded by default
exclude-use-default: false
exclude:
- EXC0001
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.organizeImports": "explicit"
},
},
"[go.mod]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.organizeImports": "explicit"
},
},
"gopls": {
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this library are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/fluentassert/verify/compare/v1.1.0...HEAD)
## [Unreleased](https://github.com/fluentassert/verify/compare/v1.2.0...HEAD)

## [1.2.0](https://github.com/fluentassert/verify/releases/tag/v1.2.0) - 2024-09-10

### Added

Expand Down
2 changes: 1 addition & 1 deletion build/mdlint.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var mdlint = goyek.Define(goyek.Task{
if len(mdFiles) == 0 {
a.Skip("no .md files")
}
dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.36.0"
dockerImage := "ghcr.io/igorshubovych/markdownlint-cli:v0.41.0"
cmd.Exec(a, "docker run --rm -v '"+curDir+":/workdir' "+dockerImage+" "+strings.Join(mdFiles, " "))
},
})

0 comments on commit 5e1fa65

Please sign in to comment.