From 7fffb33667f502737b66c1c1034744ed2dcc3b69 Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Sat, 25 Nov 2023 13:23:05 -0500 Subject: [PATCH] [release-1.33.2] Bump to v1.33.2 As the title says. Rather than trying to insert the version bump to v1.33.2 into the main branch, I've created a branch that includes the changes to Docker and Buildkit that should reduce the noted bloat. This does not include changes added for upstream c/{project} bumps, XDG_RUNTIME changes, nor FreeBSD. This approach was used after discussions in my prior PR This PR simiply bumps the version appropriately in the branch so that we can create a release to vendor into Podman v4.8. [NO NEW TESTS NEEDED] Signed-off-by: TomSweeneyRedHat --- CHANGELOG.md | 7 +++++++ changelog.txt | 6 ++++++ define/types.go | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ed2502f046..e1c3bef2aa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ # Changelog +## v1.33.2 (2023-11-22) + + Update minimum to golang 1.20 + fix(deps): update module github.com/fsouza/go-dockerclient to v1.10.0 + fix(deps): update module github.com/moby/buildkit to v0.12.3 + Bump to v1.33.2-dev + ## v1.33.1 (2023-11-18) fix(deps): update module github.com/moby/buildkit to v0.11.4 [security] diff --git a/changelog.txt b/changelog.txt index ce6b8ab1ecd..fa13a80a0bd 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +- Changelog for v1.33.2 (2023-11-22) + * Update minimum to golang 1.20 + * fix(deps): update module github.com/fsouza/go-dockerclient to v1.10.0 + * fix(deps): update module github.com/moby/buildkit to v0.12.3 + * Bump to v1.33.2-dev + - Changelog for v1.33.1 (2023-11-18) * fix(deps): update module github.com/moby/buildkit to v0.11.4 [security] * test,heredoc: use fedora instead of docker.io/library/python:latest diff --git a/define/types.go b/define/types.go index 2df7c50541e..a592cc6aa5e 100644 --- a/define/types.go +++ b/define/types.go @@ -29,7 +29,7 @@ const ( // identify working containers. Package = "buildah" // Version for the Package. Also used by .packit.sh for Packit builds. - Version = "1.33.2-dev" + Version = "1.33.2" // DefaultRuntime if containers.conf fails. DefaultRuntime = "runc"