diff options
author | Ashley Cui <acui@redhat.com> | 2021-07-16 14:40:40 -0400 |
---|---|---|
committer | Ashley Cui <acui@redhat.com> | 2021-07-16 14:40:40 -0400 |
commit | 1e6fd46e91b21342f9454cf8105a92b90e398c52 (patch) | |
tree | 94d7af144bfdf80e1abd2fa636e90899a44db252 | |
parent | bfb50c0c85a2cc001b28d0f693251f7e16f100a8 (diff) | |
download | podman-1e6fd46e91b21342f9454cf8105a92b90e398c52.tar.gz podman-1e6fd46e91b21342f9454cf8105a92b90e398c52.tar.bz2 podman-1e6fd46e91b21342f9454cf8105a92b90e398c52.zip |
Bump to v3.2.3v3.2.3
Signed-off-by: Ashley Cui <acui@redhat.com>
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.txt | 14 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -5,7 +5,7 @@ Podman (the POD MANager) is a tool for managing containers and images, volumes mounted into those containers, and pods made from groups of containers. Podman is based on libpod, a library for container lifecycle management that is also contained in this repository. The libpod library provides APIs for managing containers, pods, container images, and volumes. -* [Latest Version: 3.2.2](https://github.com/containers/podman/releases/latest) +* [Latest Version: 3.2.3](https://github.com/containers/podman/releases/latest) * Latest Remote client for Windows * Latest Remote client for MacOs * Latest Static Remote client for Linux diff --git a/changelog.txt b/changelog.txt index cc7dfe838..d9a569e57 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,17 @@ +- Changelog for v3.2.3 (2021-07-16): + * Update release notes for v3.2.3 + * vendor containers/common@v0.38.16 + * vendor containers/buildah@v1.21.3 + * Fix race conditions in rootless cni setup + * CNI-in-slirp4netns: fix bind-mount for /run/systemd/resolve/stub-resolv.conf + * Make rootless-cni setup more robust + * Support uid,gid,mode options for secrets + * vendor containers/common@v0.38.15 + * [CI:DOCS] podman search: clarify that results depend on implementation + * vendor containers/common@v0.38.14 + * vendor containers/common@v0.38.13 + * [3.2] vendor containers/common@v0.38.12 + - Changelog for v3.2.2 (2021-06-25): * fix systemcontext to use correct TMPDIR * Scrub podman commands to use report package diff --git a/version/version.go b/version/version.go index c08e48b62..64df7aa6a 100644 --- a/version/version.go +++ b/version/version.go @@ -27,7 +27,7 @@ const ( // NOTE: remember to bump the version at the top // of the top-level README.md file when this is // bumped. -var Version = semver.MustParse("3.2.3-dev") +var Version = semver.MustParse("3.2.3") // See https://docs.docker.com/engine/api/v1.40/ // libpod compat handlers are expected to honor docker API versions |