diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-25 17:00:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 17:00:09 -0400 |
commit | a2765155eeab6a13964dfaccafcce70b94e4ffbd (patch) | |
tree | 26ce2fa81cded584c0f78b062aafe96d18d6c853 | |
parent | dec14194f07dfc7b43695ea877c398df6d26f327 (diff) | |
parent | 2c003d978361e10746d90b3bf4660becf0e4982c (diff) | |
download | podman-a2765155eeab6a13964dfaccafcce70b94e4ffbd.tar.gz podman-a2765155eeab6a13964dfaccafcce70b94e4ffbd.tar.bz2 podman-a2765155eeab6a13964dfaccafcce70b94e4ffbd.zip |
Merge pull request #10784 from mheon/release_322
[CI:DOCS] Bump to v3.2.2
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | changelog.txt | 29 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
4 files changed, 33 insertions, 4 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.1.0](https://github.com/containers/podman/releases/latest) +* [Latest Version: 3.2.2](https://github.com/containers/podman/releases/latest) * Latest Remote client for Windows * Latest Remote client for MacOs * Latest Static Remote client for Linux @@ -130,7 +130,7 @@ Buildah and Podman are two complementary open-source projects that are available on most Linux platforms and both projects reside at [GitHub.com](https://github.com) with Buildah [here](https://github.com/containers/buildah) and Podman -[here](https://github.com/containers/podman). Both, Buildah and Podman are +[here](https://github.com/containers/podman). Both Buildah and Podman are command line tools that work on Open Container Initiative (OCI) images and containers. The two projects differentiate in their specialization. diff --git a/changelog.txt b/changelog.txt index 2686b5086..cc7dfe838 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,32 @@ +- Changelog for v3.2.2 (2021-06-25): + * fix systemcontext to use correct TMPDIR + * Scrub podman commands to use report package + * Fix volumes with uid and gid options + * Vendor in c/common v0.38.11 + * Initial release notes for v3.2.2 + * Fix restoring of privileged containers + * Fix handling of podman-remote build --device + * Add support for podman remote build -f - . + * Fix panic condition in cgroups.getAvailableControllers + * Fix permissions on initially created named volumes + * Fix building static podman-remote + * add correct slirp ip to /etc/hosts + * disable tty-size exec checks in system tests + * Fix resize race with podman exec -it + * Fix documentation of the --format option of podman push + * Fix systemd-resolved detection. + * Health Check is not handled in the compat LibpodToContainerJSON + * Do not use inotify for OCICNI + * getContainerNetworkInfo: lock netNsCtr before sync + * [NO TESTS NEEDED] Create /etc/mtab with the correct ownership + * Create the /etc/mtab file if does not exists + * [v3.2] cp: do not allow dir->file copying + * create: support images with invalid platform + * vendor containers/common@v0.38.10 + * logs: k8s-file: restore poll sleep + * logs: k8s-file: fix spurious error logs + * utils: move message from warning to debug + - Changelog for v3.2.1 (2021-06-11): * Updated release notes for v3.2.1 * remote events: fix --stream=false diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index b4a4e3c48..304d542dd 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -36,7 +36,7 @@ Epoch: 99 %else Epoch: 0 %endif -Version: 3.2.2 +Version: 3.2.3 Release: #COMMITDATE#.git%{shortcommit0}%{?dist} Summary: Manage Pods, Containers and Container Images License: ASL 2.0 diff --git a/version/version.go b/version/version.go index 2bb13bf80..c08e48b62 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.2-dev") +var Version = semver.MustParse("3.2.3-dev") // See https://docs.docker.com/engine/api/v1.40/ // libpod compat handlers are expected to honor docker API versions |