Skip to content

Commit

Permalink
Tag v1.15.8 (#2661)
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
  • Loading branch information
dominikschulz committed Sep 11, 2023
1 parent edd2b52 commit bab77b4
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog

## 1.15.8 / 2023-09-11

* [BUGFIX] Use goreleaser build for crosscompile (#2635)
* [bugfix] Allow fsck to check a single secret (#2659)
* [bugfix] Do not remove unused keys on import by default (#2657)
* [bugfix] Fix parsing of large secrets (#2654)
* [chore] Update dependencies (#2660)
* [docs] add/update choco, scoop, winget instructions (#2647)
* [feat] Add --store option to gopass fsck (#2658)
* [feat] Add XCKD pwgen config options (#2651)

## 1.15.7 / 2023-08-04

* [BUGFIX] Fix build issues on various non-Linux platforms (#2630, #2633)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.15.7
1.15.8
5 changes: 4 additions & 1 deletion gopass.1
@@ -1,5 +1,5 @@

.TH GOPASS "1" "August 2023" "gopass (github.com/gopasspw/gopass) 1.15.7" "User Commands"
.TH GOPASS "1" "September 2023" "gopass (github.com/gopasspw/gopass) 1.15.8" "User Commands"
.SH NAME
gopass - The standard Unix password manager
.SH SYNOPSIS
Expand Down Expand Up @@ -209,6 +209,9 @@ Check the integrity of the given sub-store or all stores if none are specified.
.TP
\fB\-\-decrypt\fR,
Decrypt and reencrypt during fsck.
.TP
\fB\-\-store\fR,
Limit fsck to this mount point
.SS fscopy
Copy files from or to the password store

Expand Down
2 changes: 1 addition & 1 deletion pkg/pwgen/pwrules/pwrules_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion version.go
Expand Up @@ -15,7 +15,7 @@ func getVersion() semver.Version {
return semver.Version{
Major: 1,
Minor: 15,
Patch: 7,
Patch: 8,
Pre: []semver.PRVersion{
{VersionStr: "git"},
},
Expand Down
2 changes: 1 addition & 1 deletion zsh.completion
Expand Up @@ -93,7 +93,7 @@ _gopass () {

;;
fsck)
_arguments : "--decrypt[Decrypt and reencrypt during fsck.]"
_arguments : "--decrypt[Decrypt and reencrypt during fsck.]" "--store[Limit fsck to this mount point]"


;;
Expand Down

0 comments on commit bab77b4

Please sign in to comment.