diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e2838c23..532561eb4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.12.7 / 2021-07-02 + +* DOCUMENTATION Fixed Single Line Formating for Clone Documentation (#1943) +* [BUGFIX] Allow --strict to be chained with --symbols (#1952, #1941) +* [BUGFIX] Normalize recipient IDs before comparison (#1953, #1900) +* [BUGFIX] Use /tmp for GIT_SSH_COMMAND on Mac (#1951, #1896) +* [ENHANCEMENT] Add warning when parsing content (#1950) + ## 1.12.6 / 2021-05-01 * [BUGFIX] Do not recurse with a key (#1907, #1906) diff --git a/VERSION b/VERSION index 456e5c4ad8..41c8a73d48 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12.6 +1.12.7 diff --git a/gopass.1 b/gopass.1 index 35b5163230..f2d8d2d4eb 100644 --- a/gopass.1 +++ b/gopass.1 @@ -1,5 +1,5 @@ -.TH GOPASS "1" "May 2021" "gopass (github.com/gopasspw/gopass) 1.12.6" "User Commands" +.TH GOPASS "1" "July 2021" "gopass (github.com/gopasspw/gopass) 1.12.7" "User Commands" .SH NAME gopass - The standard Unix password manager .SH SYNOPSIS diff --git a/version.go b/version.go index abd1128e8f..3b986c5800 100644 --- a/version.go +++ b/version.go @@ -17,7 +17,7 @@ func getVersion() semver.Version { return semver.Version{ Major: 1, Minor: 12, - Patch: 6, + Patch: 7, Pre: []semver.PRVersion{ {VersionStr: "git"}, },