diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-11-24 05:31:07 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-11-24 05:37:35 -0500 |
commit | cbdb4d54bd3dddb8b4452adbfc29ca7702b8e387 (patch) | |
tree | 50e3d8f4d8d2d9e55b8a0b9d80892771544236a1 | |
parent | 5267e73db0814a6af9704aae62d600b08df80774 (diff) | |
download | podman-cbdb4d54bd3dddb8b4452adbfc29ca7702b8e387.tar.gz podman-cbdb4d54bd3dddb8b4452adbfc29ca7702b8e387.tar.bz2 podman-cbdb4d54bd3dddb8b4452adbfc29ca7702b8e387.zip |
Bump to v2.2.0-rc2v2.2.0-rc2
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
-rw-r--r-- | changelog.txt | 30 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 31 insertions, 1 deletions
diff --git a/changelog.txt b/changelog.txt index 4d423ca44..326f52718 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,33 @@ +- Changelog for HEAD (2020-11-24): + * Set PATH env in systemd timer. + * Docker compat API fixes + * shell completions: remove usage of ShellCompDirectiveError + * more shell completion improvements + * Fix ip-range for classless subnet masks + * Bump github.com/containers/common from 0.27.0 to 0.29.0 + * Add podman container ps command + * clarify ps(1) fallback of `podman top` + * APIv2 - create container sets wrong entrypoint + * Enable remote shell completion without a running endpoint + * Specify what the replace flag replaces in help text + * APIv2 - strip CAP_ prefix from capabilities in json + * Make c.networks() list include the default network + * Allow containers to --restart on-failure with --rm + * REST API v2 - list of images - mandatory Created attribute + * Allow multiple --network flags for podman run/create + * fix container cgroup lookup + * Make podman service log events + * vendor in containers/storage v1.24.1 containers/image v5.8.1 + * Document containers.conf settings for remote connections + * Shell completion for podman ps and podman pod ps --filter + * Add alias for podman network rm -> remove + * add network connect|disconnect compat endpoints + * Fix sed regex to update version in version/version.go + * Github-Actions: Send e-mail on Cirrus cron failure + * Align the podman pod ps --filter behavior with podman ps + * podman-remote network rm --force is broken + * Remove build \!remote flags from test + - Changelog for v2.2.0-rc1 (2020-11-18): * Add release notes for v2.2.0-RC1 * correct numbering typo diff --git a/version/version.go b/version/version.go index a62648eea..121fa62d6 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.0-dev") +var Version = semver.MustParse("2.2.0-rc2") // APIVersion is the version for the remote // client API. It is used to determine compatibility |