diff options
-rw-r--r-- | changelog.txt | 42 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 44 insertions, 2 deletions
diff --git a/changelog.txt b/changelog.txt index 951c01c80..8a401a967 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,45 @@ +- Changelog for v2.0.0-rc7 (2020-06-17) + * Bump Buildah to v1.15.0 + * Move logs functionality to separate file for APIv2 + * generate systemd: `ExecStopPost` for all units + * Revert #6591 to fix issue with failed tests + * vendor github.com/containers/image/v5@v5.5.1 + * Add support for the unless-stopped restart policy + * fix misc remote build issues + * "streaming output" logs test: fix flake + * Fix handling of old oci hooks + * [CI:DOCS] Fixes #6548 + * Re-add resource limit warnings to Specgen + * Add <return> to lines returen in podman-remote logs + * Vendor containers/common v0.14.0 + * Show Anon, GID, UID in v2 volumes + * Fix podman inspect on overlapping/missing objects + * Fix --init and --init-path + * Fix podman-remote images + * Revert "Change Varlink systemd unit to use `system service`" + * Bump github.com/containers/conmon + * handlers/compat: fix lint error + * auto-update: use image's arch + * APIv2 tests: Add some tests for podman pods + * Add deprecated message to varlink command + * Handle errors on attach properly + * fix podman cp can create an extra directory level + * Remove redundant break in for loop. + * Bump to v2.0.0-dev + * generate systemd: `--replace` on named containers/pods + * pod create --replace + * {create,run} --replace + * Bump github.com/uber/jaeger-client-go + * Bump github.com/onsi/ginkgo from 1.12.3 to 1.13.0 + * Adds more docker py test + * The string field of Built was missing from server + * Add some additional fields to imageinspect + * Do not print error message when container does not exist + * Changed from t.StopAtEOF() to t.Stop() and added error check + * Fix -f logs to stop when a container exits + * Add the missing return + * Fix -f logs follow with stopped container + - Changelog for v2.0.0-rc6 (2020-06-15) * Change Varlink systemd unit to use `system service` * Turn on More linters diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 260de7b20..0d3323163 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.0.0 +Version: 2.0.0-rc7 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 4c7202e77..739d65552 100644 --- a/version/version.go +++ b/version/version.go @@ -4,7 +4,7 @@ package version // NOTE: remember to bump the version at the top // of the top-level README.md file when this is // bumped. -const Version = "2.0.0-dev" +const Version = "2.0.0-rc7" // APIVersion is the version for the remote // client API. It is used to determine compatibility |