From 842fa60d7597b7c3c87e55ae2ea0578e80911969 Mon Sep 17 00:00:00 2001 From: Dominik Schulz Date: Sat, 6 Apr 2024 19:42:06 +0200 Subject: [PATCH] Update to v1.15.13 Signed-off-by: Dominik Schulz --- .golangci.yml | 19 ++++++++++++------- CHANGELOG.md | 4 ++++ VERSION | 2 +- go.mod | 4 +++- version.go | 2 +- 5 files changed, 21 insertions(+), 10 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 85c60c7..c911815 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,8 +1,5 @@ run: - skip-dirs: - - helpers/ - go: 1.22 - deadline: 5m + timeout: 5m linters-settings: gocyclo: @@ -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: @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index c3102a5..a8cd490 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/VERSION b/VERSION index 50830c8..903bc64 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.15.12 +1.15.13 diff --git a/go.mod b/go.mod index 772a84b..361afee 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/version.go b/version.go index d385cf6..a2916b2 100644 --- a/version.go +++ b/version.go @@ -15,7 +15,7 @@ func getVersion() semver.Version { return semver.Version{ Major: 1, Minor: 15, - Patch: 12, + Patch: 13, Pre: []semver.PRVersion{ {VersionStr: "git"}, },