From 4631586aa3928804c164fce027b6589477f97fa0 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 11 May 2018 13:20:57 -0400 Subject: Bump to v0.5.2 Signed-off-by: Matthew Heon --- changelog.txt | 40 ++++++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index b08eb079c..bffc86853 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,43 @@ +- Changelog for v0.5.2 (2018-05-11): + * vendor/golang.org/x/text: Vendor collate and language + * hooks: Order injection by collated JSON filename + * libpod: Add HooksDirNotExistFatal + * hooks/read: Ignore IsNotExist for JSON files in ReadDir + * pkg/hooks: Version the hook structure and add 1.0.0 hooks + * Fix varlink remove image force + * Update Podman-specific readme + * Update main README + * vendor.conf: Pin containernetworking/plugins to 1fb94a42 + * Do not error trying to remove cgroups that don't exist + * Remove parent cgroup we create with cgroupfs + * Place Conmon and Container in separate CGroups + * Add --cgroup-manager flag to Podman binary + * Major fixes to systemd cgroup handling + * Skip systemd-style CGroups test + * Alter CGroup path handling for 'podman top' + * Add validation for CGroup parents. Pass CGroups path into runc + * vendor/github.com/docker/docker/hack: Remove unused directory + * varlink info + * vendor.conf: Bump containerd/cgroups to 77e62851 + * vendor.conf: Bump CNI to v0.6.0 + * Dont eat the pull error message for varlink + * podman push should honor registries.conf + * alphabetize the varlink methods, types, and errors in the docs + * Add missing newline to podman port + * Generate varlink API documentation automatically + * Allow streaming on some varlink container methods + * Remove extra close from attach resize channel + * Vendor in latest containers/storage fix for UserNS + * container.go: fix lint error + * Dockerfile.Fedora: use fedora:28 instead of fedora:27 + * Fix calculation of RunningFor in ps json output + * Should not error out if container no longer exists in oci + * Make invalid state nonfatal when cleaning up in run + * test/e2e/run_userns_test.go: new file + * podman, userNS: configure an intermediate mount namespace + * networking, userNS: configure the network namespace after create + * Begin wiring in USERNS Support into podman + - Changelog for v0.5.1 (2018-05-04): * Fix pulling from secure registry * Optionally init() during container restart diff --git a/version/version.go b/version/version.go index 1e33bb54c..417897cf5 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // Version is the version of the build. -const Version = "0.5.2-dev" +const Version = "0.5.2" -- cgit v1.2.3-54-g00ecf From e5e3a5b2acd73975d42a1050d5c592bee76e0747 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 11 May 2018 13:21:37 -0400 Subject: Bump to v0.5.3-dev Signed-off-by: Matthew Heon --- contrib/spec/podman.spec.in | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 1e7c2bbde..f85348d32 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -44,7 +44,7 @@ %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: podman -Version: 0.5.2 +Version: 0.5.3 Release: #COMMITDATE#.git%{shortcommit}%{?dist} Summary: Manage Pods, Containers and Container Images License: ASL 2.0 diff --git a/version/version.go b/version/version.go index 417897cf5..a0ec3b531 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // Version is the version of the build. -const Version = "0.5.2" +const Version = "0.5.3-dev" -- cgit v1.2.3-54-g00ecf From 266fe390c2fa89ab43a300933238dee027995dac Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 11 May 2018 13:22:18 -0400 Subject: Update gitvalidation epoch Signed-off-by: Matthew Heon --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index abe3ea8de..57b61e5ab 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ GO ?= go -EPOCH_TEST_COMMIT ?= b44d4fb1ec05aec +EPOCH_TEST_COMMIT ?= c8208a845e734a3 HEAD ?= HEAD CHANGELOG_BASE ?= HEAD~ CHANGELOG_TARGET ?= HEAD -- cgit v1.2.3-54-g00ecf