From d0fbfdc0accf4e491fdca778f6719e9158794108 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 4 May 2018 11:35:14 -0400 Subject: Bump to v0.5.1 Signed-off-by: Matthew Heon --- changelog.txt | 34 ++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 655278666..b08eb079c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,37 @@ +- Changelog for v0.5.1 (2018-05-04): + * Fix pulling from secure registry + * Optionally init() during container restart + * bashcompletion enhancements + * Add directory for systemd socket and service if not present + * varlink containers + * Make podman commit to localhost rather then docker.io + * Trivial refactor on volume addition + * When adding volumes to DB, handle nontrivial cases + * Add accessors for new image fields in container config + * Store user Volumes, Entrypoint, Command in database + * Further fix Godoc comments in options.go + * Update hooks to use config bool to detect volume mounts + * Fix Godoc comments in options.go + * Add config bool to indicate there are user volumes + * Print the Buildah comment from commit to given writer + * Do not print unnecessary Buildah details during commit + * remove options from create/run that we cannot support + * fix typos in the inspect json structs + * Fix podman logout --all flag + * podman should assign a host port to -p when omitted + * Vendor in latest buildah + * Fix misc stuff found by jhonce + * libpod.conf: Podman's conmon path on openSUSE + * Add iidfile parame to build and commit man pages + * do not commit default volumes from container + * correct varlink command in service file + * Vendor in latest containers/image + * Make ':' a restricted character for file names + * Add more validation to --volume flag for run and create + * Fix libseccomp not working in travis + * CONTRIBUTING: Document PR approval and link to OWNERS + * OWNERS: rename 'assignees' to 'approvers' + - Changelog for v0.4.4 (2018-04-27): * Use buildah commit and bud in podman * README: Link to CONTRIBUTING.md diff --git a/version/version.go b/version/version.go index e44a88b57..3abd7882a 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.1-dev" +const Version = "0.5.1" -- cgit v1.2.3-54-g00ecf From 4691706d014b9eecd8b4da37a76d65d6a9d9976a Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 4 May 2018 11:35:56 -0400 Subject: Bump to v0.5.2-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 cfbc5316b..1e7c2bbde 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.1 +Version: 0.5.2 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 3abd7882a..1e33bb54c 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.1" +const Version = "0.5.2-dev" -- cgit v1.2.3-54-g00ecf From d04ebf84198e74a2c55a64d0e1e26ee1af05f195 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 4 May 2018 11:36:36 -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 638b839e1..ce4ee65ff 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ GO ?= go -EPOCH_TEST_COMMIT ?= a824186ac9803ef +EPOCH_TEST_COMMIT ?= b44d4fb1ec05aec HEAD ?= HEAD CHANGELOG_BASE ?= HEAD~ CHANGELOG_TARGET ?= HEAD -- cgit v1.2.3-54-g00ecf