diff options
-rw-r--r-- | changelog.txt | 23 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 24 insertions, 3 deletions
diff --git a/changelog.txt b/changelog.txt index 326f52718..a54028e1c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,25 @@ -- Changelog for HEAD (2020-11-24): +- Changelog for v2.2.0 (2020-11-30): + * Update release notes for v2.2.0 + * Fix extra quotation mark in manpages. + * Fix option names --subuidname and --subgidname + * Revert "Allow multiple --network flags for podman run/create" + * Add APIv2 tests for kube generate + * Document docker transport is the only supported remote transport + * runtime: set XDG_* env variables if missing + * Add support for persistent volume claims in kube files + * Prepare support in kube play for other volume types than hostPath + * Fix problems with network remove + * Do not validate the volume source path in specgen + * REST API v2 - ping - fix typo in header + * REST API v2 - ping - remove newline from response to improve Docker compatibility + * squash + * Not use local image create/add manifest + * [CI:DOCS] fix misleading save/load usage + * [tutorials:mac-win-client] Fix command ensuring sshd is enabled + * Fix custom mac address with a custom cni network + * Ensure that --net=host/pod/container/none warn with -p + +- Changelog for v2.2.0-rc2 (2020-11-24): * Set PATH env in systemd timer. * Docker compat API fixes * shell completions: remove usage of ShellCompDirectiveError diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index ee8ce4d45..9d1d0b772 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -42,7 +42,7 @@ Epoch: 99 %else Epoch: 0 %endif -Version: 2.2.0 +Version: 2.2.1 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 a62648eea..536f5a892 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.1-dev") // APIVersion is the version for the remote // client API. It is used to determine compatibility |