diff --git a/CHANGELOG.md b/CHANGELOG.md index d8e71551fd..0a7bcfdf09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.14.3 / 2022-05-31 + +* [BUGFIX] Do not print progress bar on otp --clip (#2243) +* [BUGFIX] Removing shadowing warning when using -o/--password (#2245) +* [CLEANUP] Deprecate OutputIsRedirected in favour of IsTerminal (#2248) +* [DOCUMENTATION] Adding doc about YAML entries and unsafe-keys (#2244) +* [ENHANCEMENT] Allow deleting multiple secrets (#2239) + ## 1.14.2 / 2022-05-22 * [BUGFIX] Fix gpg identity detection (#2218, #2179) diff --git a/VERSION b/VERSION index a4cc55716f..4ea8ad87e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.2 +1.14.3 diff --git a/gopass.1 b/gopass.1 index 3645c60a53..0f1e01339a 100644 --- a/gopass.1 +++ b/gopass.1 @@ -1,5 +1,5 @@ -.TH GOPASS "1" "May 2022" "gopass (github.com/gopasspw/gopass) 1.14.2" "User Commands" +.TH GOPASS "1" "May 2022" "gopass (github.com/gopasspw/gopass) 1.14.3" "User Commands" .SH NAME gopass - The standard Unix password manager .SH SYNOPSIS diff --git a/version.go b/version.go index 4125c525cf..f4774bb5a3 100644 --- a/version.go +++ b/version.go @@ -15,7 +15,7 @@ func getVersion() semver.Version { return semver.Version{ Major: 1, Minor: 14, - Patch: 2, + Patch: 3, Pre: []semver.PRVersion{ {VersionStr: "git"}, },