summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2021-06-11 11:51:55 -0400
committerMatthew Heon <mheon@redhat.com>2021-06-14 10:35:09 -0400
commit152952fe6b18581615c3efd1fafef2d8142738e8 (patch)
treee2617565f797bd83572a1f3ef414d6d19344f51d
parentc5d9c0a6fafed649b9c7eb745abe028e7a0fbe50 (diff)
downloadpodman-152952fe6b18581615c3efd1fafef2d8142738e8.tar.gz
podman-152952fe6b18581615c3efd1fafef2d8142738e8.tar.bz2
podman-152952fe6b18581615c3efd1fafef2d8142738e8.zip
Bump to v3.2.1v3.2.1
Also, revert minimum API version for the Libpod remote API to v3.1.0. Signed-off-by: Matthew Heon <mheon@redhat.com>
-rw-r--r--changelog.txt22
-rw-r--r--version/version.go4
2 files changed, 24 insertions, 2 deletions
diff --git a/changelog.txt b/changelog.txt
index 0441908e6..2686b5086 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,25 @@
+- Changelog for v3.2.1 (2021-06-11):
+ * Updated release notes for v3.2.1
+ * remote events: fix --stream=false
+ * [CI:DOCS] fix incorrect network remove api doc
+ * remote: always send resize before the container starts
+ * remote events: support labels
+ * remote pull: cancel pull when connection is closed
+ * Fix network prune api docs
+ * Improve systemd-resolved detection
+ * logs: k8s-file: fix race
+ * Fix image prune --filter cmd behavior
+ * podman-remote build should handle -f option properly
+ * System tests: deal with crun 0.20.1
+ * Fix build tags for pkg/machine...
+ * Fix pre-checkpointing
+ * container: ignore named hierarchies
+ * [v3.2] vendor containers/common@v0.38.9
+ * rootless: fix fast join userns path
+ * [v3.2] vendor containers/common@v0.38.7
+ * [v3.2] vendor containers/common@v0.38.6
+ * Correct qemu options for Intel macs
+
- Changelog for v3.2.0 (2021-06-03):
* Final release notes updates for v3.2.0
* add ipv6 nameservers only when the container has ipv6 enabled
diff --git a/version/version.go b/version/version.go
index 606eed5af..00de7ac63 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.1-dev")
+var Version = semver.MustParse("3.2.1")
// See https://docs.docker.com/engine/api/v1.40/
// libpod compat handlers are expected to honor docker API versions
@@ -38,7 +38,7 @@ var Version = semver.MustParse("3.2.1-dev")
var APIVersion = map[Tree]map[Level]semver.Version{
Libpod: {
CurrentAPI: Version,
- MinimalAPI: semver.MustParse("3.2.0"),
+ MinimalAPI: semver.MustParse("3.1.0"),
},
Compat: {
CurrentAPI: semver.MustParse("1.40.0"),