From 4fdac8b8f73efd800318f1dc956229c2ec2521da Mon Sep 17 00:00:00 2001 From: Dominik Schulz Date: Tue, 3 May 2022 11:45:24 +0200 Subject: [PATCH] Tag v1.14.1 (#2208) RELEASE_NOTES=n/a Signed-off-by: Dominik Schulz --- CHANGELOG.md | 9 +++++++++ VERSION | 2 +- gopass.1 | 2 +- version.go | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 531e63dd29..256ea79958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.14.1 / 2022-05-02 + +* [BUGFIX] Do not print missing public key for age. (#2166) +* [BUGFIX] Improve convert output (#2171) +* [BUGFIX] fix errors in zsh completions (#2005) +* [CLEANUP] Migrating to a maintained version of openpgp (#2193) +* [ENHANCEMENT] Avoid decryption on move or copy (#2183, #2181) +* [UX] Upgrade xkcdpwgen to a new version that removes German (#2187) + ## 1.14.0 / 2022-03-16 * Add --chars option to print subset of secrets (#2155, #2068) diff --git a/VERSION b/VERSION index 850e742404..63e799cf45 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.0 +1.14.1 diff --git a/gopass.1 b/gopass.1 index 2e44a6e6f1..48b6fe74e5 100644 --- a/gopass.1 +++ b/gopass.1 @@ -1,5 +1,5 @@ -.TH GOPASS "1" "March 2022" "gopass (github.com/gopasspw/gopass) 1.14.0" "User Commands" +.TH GOPASS "1" "May 2022" "gopass (github.com/gopasspw/gopass) 1.14.1" "User Commands" .SH NAME gopass - The standard Unix password manager .SH SYNOPSIS diff --git a/version.go b/version.go index 380e1fe2d9..8b57f1df20 100644 --- a/version.go +++ b/version.go @@ -15,7 +15,7 @@ func getVersion() semver.Version { return semver.Version{ Major: 1, Minor: 14, - Patch: 0, + Patch: 1, Pre: []semver.PRVersion{ {VersionStr: "git"}, },