diff --git a/CHANGELOG.md b/CHANGELOG.md index a087df2be2..75561a4435 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.14.5 / 2022-09-03 + +* [BUGFIX] Fix fsck progress bar. Mostly. (#2303) +* [DOCUMENTATION] fix in recommended vim setting (#2318) + ## 1.14.4 / 2022-08-02 * [BREAKING] gopass otp will automatically update the counter key in HTOP secrets! (#2278) diff --git a/VERSION b/VERSION index 4e00d0ac07..24a57f28a4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.4 +1.14.5 diff --git a/gopass.1 b/gopass.1 index f094195638..707cfa86f1 100644 --- a/gopass.1 +++ b/gopass.1 @@ -1,5 +1,5 @@ -.TH GOPASS "1" "August 2022" "gopass (github.com/gopasspw/gopass) 1.14.4" "User Commands" +.TH GOPASS "1" "September 2022" "gopass (github.com/gopasspw/gopass) 1.14.5" "User Commands" .SH NAME gopass - The standard Unix password manager .SH SYNOPSIS diff --git a/version.go b/version.go index 991d0c0def..5194f48550 100644 --- a/version.go +++ b/version.go @@ -15,7 +15,7 @@ func getVersion() semver.Version { return semver.Version{ Major: 1, Minor: 14, - Patch: 4, + Patch: 5, Pre: []semver.PRVersion{ {VersionStr: "git"}, },