Skip to content

Commit

Permalink
Update to v1.15.13
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Schulz <[email protected]>
  • Loading branch information
dominikschulz committed Apr 6, 2024
1 parent e6628cc commit 842fa60
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 10 deletions.
19 changes: 12 additions & 7 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
run:
skip-dirs:
- helpers/
go: 1.22
deadline: 5m
timeout: 5m

linters-settings:
gocyclo:
Expand All @@ -11,7 +8,7 @@ linters-settings:
max-complexity: 22
skip-tests: true
staticcheck:
go: "1.21"
go: "1.22"
# https://staticcheck.io/docs/options#checks
checks: ["all","-SA1019"]
funlen:
Expand Down Expand Up @@ -80,6 +77,14 @@ linters:
- wsl

issues:
exclude-use-default: false # disable filtering of defaults for better zero-issue policy
max-per-linter: 0 # disable limit; report all issues of a linter
max-issues-per-linter: 0 # disable limit; report all issues of a linter
max-same-issues: 0 # disable limit; report all issues of the same issue
exclude-use-default: false # disable filtering of defaults for better zero-issue policy
exclude-dirs:
- helpers/

output:
sort-results: true
sort-order:
- linter
- file
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.15.13

- Bump dependencies to gopass release v1.15.13

## 1.15.12

- Bump dependencies to gopass release v1.15.12
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.12
1.15.13
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/gopasspw/gopass-summon-provider

go 1.22.2
go 1.22.1

toolchain go1.22.2

require (
github.com/blang/semver/v4 v4.0.0
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func getVersion() semver.Version {
return semver.Version{
Major: 1,
Minor: 15,
Patch: 12,
Patch: 13,
Pre: []semver.PRVersion{
{VersionStr: "git"},
},
Expand Down

0 comments on commit 842fa60

Please sign in to comment.