From d45a68bceb05e9164a63a0b2ab2e1c6293bbf492 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 4 May 2022 14:02:29 -0400 Subject: Update release notes for v4.1.0 RC2 Signed-off-by: Matthew Heon --- RELEASE_NOTES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index fd4f96fe0..eefb68a46 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,6 +6,7 @@ - A new container command has been added, `podman container clone`. This command makes a copy of an existing container, with the ability to change some settings (e.g. resource limits) while doing so. - A new machine command has been added, `podman machine inspect`. This command provides details on the configuration of machine VMs. - The `podman machine set` command can now change the CPUs, memory, and disk space available to machines after they were initially created, using the new `--cpus`, `--disk-size`, and `--memory` options ([#13633](https://github.com/containers/podman/issues/13633)). +- Podman now supports sending JSON events related to machines to a Unix socket named `machine_events.*\.sock` in `XDG_RUNTIME_DIR/podman` or to a socket whose path is set in the `PODMAN_MACHINE_EVENTS_SOCK` environment variable. - Two new volume commands have been added, `podman volume mount` and `podman volume unmount`. These allow for Podman-managed named volumes to be mounted and accessed from outside containers ([#12768](https://github.com/containers/podman/issues/12768)). - VMs created by `podman machine` now automatically mount the host's `$HOME` into the VM, to allow mounting volumes from the host into containers. - The `podman container checkpoint` and `podman container restore` options now support checkpointing to and restoring from OCI images. This allows checkpoints to be distributed via standard image registries. -- cgit v1.2.3-54-g00ecf From 0abf243202dc00ecc1f968fc9538b9eb67011716 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 4 May 2022 14:02:50 -0400 Subject: Bump to v4.1.0-rc2 Signed-off-by: Matthew Heon --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 5b2ca0d74..cef67cf71 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("4.1.0-dev") +var Version = semver.MustParse("4.1.0-rc2") // See https://docs.docker.com/engine/api/v1.40/ // libpod compat handlers are expected to honor docker API versions -- cgit v1.2.3-54-g00ecf From 8cbe598fdb75ff34a737e038c32e22c110e2d7a1 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 4 May 2022 14:03:06 -0400 Subject: Bump to v4.1.0-dev Signed-off-by: Matthew Heon --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index cef67cf71..5b2ca0d74 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("4.1.0-rc2") +var Version = semver.MustParse("4.1.0-dev") // See https://docs.docker.com/engine/api/v1.40/ // libpod compat handlers are expected to honor docker API versions -- cgit v1.2.3-54-g00ecf From 2fd178ac0bfaa2ebdaac10f58769d1dbc3d0788f Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 4 May 2022 14:08:42 -0400 Subject: Misc readme update to retrigger CI Signed-off-by: Matthew Heon --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9b375e35d..d8a29b6ff 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ Podman presently only supports running containers on Linux. However, we are buil ## Roadmap +1. Improvements to OS X and Windows support 1. Further improvements to the REST API, with a focus on bugfixes and implementing missing functionality 1. Improvements on rootless containers, with a focus on improving the user experience and exposing presently-unavailable features when possible 1. Improvements to Pods, including the addition of pod-level resource limits -- cgit v1.2.3-54-g00ecf From 0d8ff6fa965c86fdec1208f00d31cb568d1ba4b4 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 4 May 2022 15:13:09 -0400 Subject: Add 4.1 branch to API documentation Signed-off-by: Matthew Heon --- docs/source/Reference.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/Reference.rst b/docs/source/Reference.rst index dca49a559..7b3442201 100644 --- a/docs/source/Reference.rst +++ b/docs/source/Reference.rst @@ -7,6 +7,8 @@ Show the API documentation for version: * `latest (main branch) <_static/api.html>`_ +* `version 4.1 <_static/api.html?version=v4.1>`_ + * `version 4.0 <_static/api.html?version=v4.0>`_ * `version 3.4 <_static/api.html?version=v3.4>`_ -- cgit v1.2.3-54-g00ecf