diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-29 13:33:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 13:33:35 -0400 |
commit | ae43ce00fea42c4b3a8c3add9af4e04eac523c63 (patch) | |
tree | 765b7d12853a960834ad197da0b8753cf925fbb4 | |
parent | 1e59053cc55f82f21442aff6723c89e2af4ddffe (diff) | |
parent | 567902542e9971a67979b144d3c6feacd00df79d (diff) | |
download | podman-ae43ce00fea42c4b3a8c3add9af4e04eac523c63.tar.gz podman-ae43ce00fea42c4b3a8c3add9af4e04eac523c63.tar.bz2 podman-ae43ce00fea42c4b3a8c3add9af4e04eac523c63.zip |
Merge pull request #568 from mheon/bump_0_3_5
Bump to v0.3.5
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | changelog.txt | 25 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
4 files changed, 28 insertions, 3 deletions
@@ -1,5 +1,5 @@ GO ?= go -EPOCH_TEST_COMMIT ?= 3f5da4d0dd +EPOCH_TEST_COMMIT ?= 1e59053cc5 HEAD ?= HEAD CHANGELOG_BASE ?= HEAD~ CHANGELOG_TARGET ?= HEAD diff --git a/changelog.txt b/changelog.txt index a218766d0..2f829d9f5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,28 @@ +- Changelog for v0.3.5 (2018-03-29): + * Allow sha256: prefix for input + * Add secrets patch to podman + * Fix tests + * Remove a loop in container graph + * Only start containers that are not running in pod start + * Change pod Start() to use container dependency graph + * Add tests for container graphs + * Initial implementation of container graph generation + * Error is already wrapped properly. + * Check for duplicate names when generating new container and pod names. + * podman: new option --conmon-pidfile= + * Ensure container dependencies are part of the same pod + * Prevent ctrs not in pods from depending on pod ctrs + * Disable --sig-proxy tests due to race conditions + * Remove dependency on kubernetes + * Vendor in lots of kubernetes stuff to shrink image size + * Fix some minor issues lint has been picking up + * cmd/podman/run.go: Error nicely when no image found + * podman exec should handle options --env foo + * Remove current SQLite DB driver + * Update containers/storage to pick up overlay driver fix + * First tag, untag THEN reload the image + * Add files section to podman man page + - Changelog for v0.3.4 (2018-03-23): * Bump version to v0.3.4 * Make container env variable conditional diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index ce6d719df..893dfa234 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.3.5 +Version: 0.4.1 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 c1a075fc5..3519a67ab 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.3.5-dev" +const Version = "0.4.1-dev" |