diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-08-11 15:14:51 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2018-08-11 15:14:51 -0400 |
commit | f38eb4fe50427549db8957e5033b73f04b4d5c82 (patch) | |
tree | 5f46a6d60507c20c89ada2407ca77ba4b2ab7c0a | |
parent | 7d116f5f73520e6db389f28e9963f0137a27d52d (diff) | |
download | podman-f38eb4fe50427549db8957e5033b73f04b4d5c82.tar.gz podman-f38eb4fe50427549db8957e5033b73f04b4d5c82.tar.bz2 podman-f38eb4fe50427549db8957e5033b73f04b4d5c82.zip |
Bump to v0.8.2.1v0.8.2.1
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
-rw-r--r-- | changelog.txt | 13 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/changelog.txt b/changelog.txt index 75ff286f4..b13283535 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,16 @@ +- Changelog for v0.8.2.1 (2018-08-11) + * Ensure pod inspect is locked and validity-checked + * Further fix tests + * Bump gitvalidation epoch + * Bump to v0.8.3-dev + * Fix python tests again + * Fix python tests to use cgroupfs + * Fix typo breaking tests + * Force cgroupfs for python tests + * Swap default CGroup manager to systemd + * Only use cgroupfs for containerized tests + * Temporarily force all tests to use cgroupfs driver + - Changelog for v0.8.2 (2018-08-10) * We need to sort mounts so that one mount does not over mount another. * search name should include registry diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 31a70fbde..1f79597e1 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -33,7 +33,7 @@ %global shortcommit0 %(c=%{commit0}; echo ${c:0:8}) Name: podman -Version: 0.8.3 +Version: 0.8.2.1 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 a4228f00e..50beced17 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.8.3-dev" +const Version = "0.8.2.1" |