summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-08-31 16:45:03 -0400
committerGitHub <noreply@github.com>2018-08-31 16:45:03 -0400
commit4a910e1c2b0cebce8365ffa9555947e7ee30b5ca (patch)
tree5a24826317858d58b61be9f5528fb862bfef7ca7
parent531387465c282c68e0c697076f23b24d23d005ad (diff)
parent73a1e8192490512b972fdc8da699f15774d6948e (diff)
downloadpodman-4a910e1c2b0cebce8365ffa9555947e7ee30b5ca.tar.gz
podman-4a910e1c2b0cebce8365ffa9555947e7ee30b5ca.tar.bz2
podman-4a910e1c2b0cebce8365ffa9555947e7ee30b5ca.zip
Merge pull request #1394 from mheon/bump-0.8.5
Bump to 0.8.5
-rw-r--r--Makefile2
-rw-r--r--changelog.txt57
-rw-r--r--contrib/spec/podman.spec.in2
-rw-r--r--version/version.go2
4 files changed, 60 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6f7bf7537..1e0d8b0bf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
GO ?= go
DESTDIR ?= /
-EPOCH_TEST_COMMIT ?= 717b038911d1904b056113cc5a7d13b22f5ef4ce
+EPOCH_TEST_COMMIT ?= c65a8bad8f99867cff5bf0d914796897fbebc30d
HEAD ?= HEAD
CHANGELOG_BASE ?= HEAD~
CHANGELOG_TARGET ?= HEAD
diff --git a/changelog.txt b/changelog.txt
index ba0021058..b3096dab1 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,60 @@
+- Changelog for v0.8.5 (2018-08-31)
+ * Add proper support for systemd inside of podman
+ * We are mistakenly seeing repos as registries.
+ * container: resolve rootfs symlinks
+ * Up time between checks for podman wait
+ * Turn on test debugging
+ * Add support for remote commands
+ * fixup A few language changes and subuid(5)
+ * Make the documentation of user namespace options in podman-run clearer
+ * pod create: restore help flag
+ * catch command-not-found errors
+ * don't print help message for usage errors
+ * Vendor in latest containers/storage and containers/image
+ * add conmon to copr spec
+ * docs: consistent format for example
+ * docs: consistent headings
+ * docs: make HISTORY consistent
+ * docs: fix headers
+ * varlink: fix --timeout usage
+ * run/create: reserve `-h` flag for hostname
+ * podman,varlink: inform user about --timeout 0
+ * rootless: show an error when stats is used
+ * rootless: show an error when pause/unpause are used
+ * rootless: unexport GetUserNSForPid
+ * rootless, exec: use the new function to join the userns
+ * rootless: fix top
+ * rootless: add new function to join existing namespace
+ * Vendor in latest projectatomic/buildah
+ * Set nproc in containers unless explicitly overridden
+ * Do not set max open files by default if we are rootless
+ * Set default max open files in spec
+ * Resolve /etc/resolv.conf before reading
+ * document `--rm` semantics
+ * allow specification of entrypoint in the form of a slice
+ * Test RPM build and install for regressions
+ * rootless, search: do not create a new userns
+ * rootless, login, logout: do not create a new userns
+ * rootless, kill: do not create a new userns
+ * rootless, stop: do not create a new userns
+ * Ensure return errors match API docs
+ * Fix manpage to note how multiple filters are combined
+ * Fix handling of multiple filters in podman ps
+ * Fix Mount Propagation
+ * docs: add containers-mounts.conf(5)
+ * docs: use "containers-" prefix for registries and storage
+ * rootless: fix --pid=host
+ * rootless: fix --ipc=host
+ * spec: bind mount /sys only when userNS are enabled
+ * rootless, tests: add test for --uts=host
+ * Dockerfile.Fedora: install slirp4netns
+ * rootless: don't use kill --all
+ * rootless: exec handle processes that create an user namespace
+ * rootless: fix exec
+ * Move whale-says test to end of baseline
+ * Bump gitvalidation epoch
+ * Bump to v0.8.5-dev
+
- Changelog for v0.8.4 (2018-08-24)
* Add release notes
* Regenerate easyjson after rebase
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in
index f888c0ebd..dbcbfea8f 100644
--- a/contrib/spec/podman.spec.in
+++ b/contrib/spec/podman.spec.in
@@ -39,7 +39,7 @@
%global shortcommit_conmon %(c=%{commit_conmon}; echo ${c:0:7})
Name: podman
-Version: 0.8.5
+Version: 0.9.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 f96b7c63a..558a936bc 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.5-dev"
+const Version = "0.9.1-dev"