diff options
author | Matthew Heon <mheon@redhat.com> | 2020-12-07 17:59:05 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2020-12-07 17:59:05 -0500 |
commit | a0d478edea7f775b7ce32f8eb1a01e75374486cb (patch) | |
tree | 05fdd84f4ee7fcc72966dad6ff41c988045c0618 | |
parent | 23d2deed30c2491a2cf59644324f27c9eebf7ba4 (diff) | |
download | podman-a0d478edea7f775b7ce32f8eb1a01e75374486cb.tar.gz podman-a0d478edea7f775b7ce32f8eb1a01e75374486cb.tar.bz2 podman-a0d478edea7f775b7ce32f8eb1a01e75374486cb.zip |
Bump to v2.2.1v2.2.1
Signed-off-by: Matthew Heon <mheon@redhat.com>
-rw-r--r-- | changelog.txt | 27 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 28 insertions, 1 deletions
diff --git a/changelog.txt b/changelog.txt index a54028e1c..d202deb7d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,30 @@ +- Changelog for v2.2.1 (2020-12-07): + * Updat containers/image to v5.9.0 + * Update release notes for v2.2.1 + * Fix some nit + * compat create should use bindings + * Revert the custom cobra vendor + * Fix typo in tests + * Do not use "true" after "syslog" in exit commands + * Fix shell completion for ps --filter ancestor + * target is not tag + * add commas between mount options + * Fix `podman images...` missing headers in table templates + * Use Libpod tmpdir for pause path + * Change bindings to stop two API calls for ping + * podman, exec: move conmon to the correct cgroup + * Support --network=default as if it was private + * Correct which network commands can be run as rootless + * Use PasswordCallback instead of Password for ssh + * Close image rawSource when each loop ends + * container create: do not clear image name + * Docker compat API - containers create ignores the name + * Do not mount sysfs as rootless in more cases + * Do not error on installing duplicate shutdown handler + * container cgroup path + * Change name of imageVolumes in container config JSON + * The --net=container flag to Buildah is deprecated + - Changelog for v2.2.0 (2020-11-30): * Update release notes for v2.2.0 * Fix extra quotation mark in manpages. diff --git a/version/version.go b/version/version.go index 536f5a892..851bb4205 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ import ( // NOTE: remember to bump the version at the top // of the top-level README.md file when this is // bumped. -var Version = semver.MustParse("2.2.1-dev") +var Version = semver.MustParse("2.2.1") // APIVersion is the version for the remote // client API. It is used to determine compatibility |