diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-13 12:03:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-13 12:03:39 -0400 |
commit | 2bad02d494825993fded4f2364c2a32ef021baf2 (patch) | |
tree | 4d2946af6545173a89c8d4d9d1da75ae8443f2b9 | |
parent | f83adcc57e567c89afac0bd73a0d8061123b2292 (diff) | |
parent | 7c7020ba16660141da77cc4a61c2d7c3ab4efe59 (diff) | |
download | podman-2bad02d494825993fded4f2364c2a32ef021baf2.tar.gz podman-2bad02d494825993fded4f2364c2a32ef021baf2.tar.bz2 podman-2bad02d494825993fded4f2364c2a32ef021baf2.zip |
Merge pull request #13858 from mheon/bump_346
[CI:DOCS] Bump to v3.4.6
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | RELEASE_NOTES.md | 4 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 6 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.3.1](https://github.com/containers/podman/releases/latest) +* [Latest Version: 3.4.6](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/RELEASE_NOTES.md b/RELEASE_NOTES.md index 54112ff26..8c5f05e9e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,9 @@ # Release Notes +## 3.4.6 +### Security +- This release addresses CVE-2022-27191, where an attacker could potentially cause crashes in remote Podman by using incorrect SSH ciphers. + ## 3.4.5 ### Security - This release addresses CVE-2022-27649, where Podman would set excess inheritable capabilities for processes in containers. diff --git a/version/version.go b/version/version.go index 53510f754..dc8ad2574 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.4.6-dev") +var Version = semver.MustParse("3.4.7-dev") // See https://docs.docker.com/engine/api/v1.40/ // libpod compat handlers are expected to honor docker API versions |