From f740ee0ba60c9a07edaa8560043f3c3fe953cd3c Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 13 Apr 2018 14:49:15 -0400 Subject: Bump to v0.4.2 Signed-off-by: Matthew Heon --- changelog.txt | 24 +++++++++++++++++++++++- version/version.go | 2 +- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 57a767f82..43a1c53ef 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,26 @@ -- Changelog for HEAD (2018-04-05): +- Changelog for v0.4.2 (2018-04-13): + * Fix podman run --attach tests + * Fix another comparison of a Go interface against nil + * Allowing attaching stdin to non-interactive containers + * Add tests for podman attach + * Change attach to accept a struct containing streams + * Fix terminal attach + * Changes to attach to enable per-stream attaching + * HACK temporary fix for test suite + * Fix locking interaction in batched Exec() on container + * Fix leaking files in Ginkgo + * Force host UID/GID mapping when creating containers + * Do not lock all containers during pod kill + * Make pod stop lock one container at a time + * Do not lock all containers during pod start + * Containers transitioning to stop should not break stats + * Add -i to exec for compatibility reasons + * Unescape characters in inspect JSON format output + * Use buildah commit for podman commit + * Functionality changes to the following flags + * Vendor in latest containers/storage and containers/image + +- Changelog for v0.4.1 (2018-04-05): * Remove image via storage if a buildah container is associated * Add hooks support to podman * Run images with no names diff --git a/version/version.go b/version/version.go index eaf5d2896..bd552b08f 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.4.2-dev" +const Version = "0.4.2" -- cgit v1.2.3-54-g00ecf From 905e0751506264d68d64032c53a20fac7c9be92b Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 13 Apr 2018 14:50:29 -0400 Subject: Bump version to v0.4.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 ef42ad090..68468c21b 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.4.2 +Version: 0.4.3 Release: 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 bd552b08f..b61632b74 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.4.2" +const Version = "0.4.3-dev" -- cgit v1.2.3-54-g00ecf From df9ebb024dde1751e9807188fd9a739c6a38e09a Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 13 Apr 2018 14:51:23 -0400 Subject: Bump gitvalidation epoch Signed-off-by: Matthew Heon --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a897e42c..51faff855 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ GO ?= go -EPOCH_TEST_COMMIT ?= 54bd0ae716 +EPOCH_TEST_COMMIT ?= 8265294d78 HEAD ?= HEAD CHANGELOG_BASE ?= HEAD~ CHANGELOG_TARGET ?= HEAD -- cgit v1.2.3-54-g00ecf