aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-08-17 15:48:48 -0400
committerGitHub <noreply@github.com>2018-08-17 15:48:48 -0400
commit8b7eb299ec21bd6d75ed298ad8b24087e3a49023 (patch)
tree6bbb984acf7cc87ec1a1dfeac4d9af212f088cf6
parent33f95b9ef82e48bd8350f6327292e55004bd6013 (diff)
parent0443127c62e7be14eb4836a767c3af1e18753918 (diff)
downloadpodman-8b7eb299ec21bd6d75ed298ad8b24087e3a49023.tar.gz
podman-8b7eb299ec21bd6d75ed298ad8b24087e3a49023.tar.bz2
podman-8b7eb299ec21bd6d75ed298ad8b24087e3a49023.zip
Merge pull request #1297 from mheon/bump-0.8.3
Bump to 0.8.3
-rw-r--r--Makefile2
-rw-r--r--changelog.txt44
-rw-r--r--contrib/spec/podman.spec.in2
-rw-r--r--version/version.go2
4 files changed, 47 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7bb8d8b1b..fdbe23584 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
GO ?= go
DESTDIR ?= /
-EPOCH_TEST_COMMIT ?= 7d116f5f73520e6db389f28e9963f0137a27d52d
+EPOCH_TEST_COMMIT ?= 33f95b9ef82e48bd8350f6327292e55004bd6013
HEAD ?= HEAD
CHANGELOG_BASE ?= HEAD~
CHANGELOG_TARGET ?= HEAD
diff --git a/changelog.txt b/changelog.txt
index b13283535..0f4698051 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,47 @@
+- Changelog for v0.8.3 (2018-08-17)
+ * Make failure to retrieve individual ctrs/pods nonfatal
+ * Mention that systemd is the default cgroup manager
+ * Add dependency for python3-psutil module
+ * Vendor in latest buildah and imagebuilder
+ * Don't fail on size.
+ * Fix handling of socket connection refusal.
+ * podman: fix --uts=host
+ * podman pod stats
+ * Added helper function for libpod pod api calls
+ * CreatePod args now PodCreate structure
+ * Added reason to PodContainerError
+ * Change batchcontainer to shared
+ * Add Pod API to varlink.
+ * Change pod varlink API.
+ * Moved getPodStatus to pod API to be used in varlink
+ * Vendor in latest containers/psgo code
+ * switch projectatomic to containers
+ * Revert "spec: bind mount /sys only for rootless containers"
+ * Suport format param for varlink Commit
+ * Fix segfault in top when -l and no args are passed
+ * Document STORAGE_DRIVER and STORAGE_OPTS environment variable
+ * podman.spec: recommend slirp4netns
+ * Do not 'make all' on Travis for Linux
+ * Fix build on non-Linux OSes
+ * Create pod CGroups when using the systemd cgroup driver
+ * Switch systemd default CGroup parent to machine.slice
+ * spec: bind mount /sys only for rootless containers
+ * build, rootless: specify IsolationOCIRootless
+ * vendor: update buildah version
+ * Fix handling of hostname in --net=host
+ * Updated pod_api to reflect function spec
+ * Add create and pull commands
+ * rootless: not require userns for help/version
+ * pkg/apparmor: use a pipe instead of a tmp file
+ * pkg/apparmor: move data under Linux/apparmor buildtags
+ * pkg/apparmor: move all linux-code into apparmor_linux*
+ * podman in rootless mode will only work with cgroupfs at this point.
+ * when searching, survive errors for multiple registries
+ * Remove unused function in runtime.go
+ * Fix papr tests by forcing cgroupfs in CI
+ * Bump gitvalidation epoch
+ * Bump to v0.8.3-dev
+
- Changelog for v0.8.2.1 (2018-08-11)
* Ensure pod inspect is locked and validity-checked
* Further fix tests
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in
index 2164926e7..d8febb743 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.4
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..5dfd6cc5a 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.4-dev"