From 2722984d1d844b5386681789c711e33604a8375a Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 25 Dec 2024 18:39:11 +0100 Subject: [PATCH 1/2] Bump version to 3.9.3. Signed-off-by: Felix Fontein --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index b7c5382f2..4f7c6ed9f 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ import ( ) // Version represents the value of the current semantic version. -var Version = "3.9.2" +var Version = "3.9.3" // PrintVersion prints the current version of sops. If the flag // `--disable-version-check` is set, the function will not attempt From 94d60a3efa5c8f29fe3fa51d1867e1f5ac2bcfe0 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 25 Dec 2024 18:39:22 +0100 Subject: [PATCH 2/2] Add changelog for 3.9.3. Signed-off-by: Felix Fontein --- CHANGELOG.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index add917e58..dff3e040a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,26 @@ Changelog ========= +3.9.3 +----- + +Improvements: + +* Dependency updates (#1699, #1703, #1710, #1714, #1715, #1723). +* Add ``persist-credentials: false`` to checkouts in GitHub workflows (#1704). +* Tests: use container images from https://github.com/getsops/ci-container-images (#1722). + +Bugfixes: + +* GnuPG: do not incorrectly trim fingerprint in presence of exclamation marks for specfic subkey selection (#1720). +* ``updatekeys`` subcommand: fix ``--input-type`` CLI flag being ignored (#1721). + +Project changes: + +* CI dependency updates (#1698, #1708, #1717). +* Rust dependency updates (#1707, #1716, #1725). + + 3.9.2 -----