summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-09-14 18:14:51 -0400
committerGitHub <noreply@github.com>2018-09-14 18:14:51 -0400
commit81df604bdb20367572f2f69872da802cb5846e35 (patch)
tree26e3671705e1b8b0816d173cdf1dea76c524c3f6
parentab5dd390ccbb0dbb33b7a78cbb41cb3807a459d2 (diff)
parent9cae1696f61f0333ed89007340723618825b9861 (diff)
downloadpodman-81df604bdb20367572f2f69872da802cb5846e35.tar.gz
podman-81df604bdb20367572f2f69872da802cb5846e35.tar.bz2
podman-81df604bdb20367572f2f69872da802cb5846e35.zip
Merge pull request #1480 from mheon/bump-0.9.2
Bump to 0.9.2
-rw-r--r--Makefile2
-rw-r--r--changelog.txt29
-rw-r--r--contrib/spec/podman.spec.in2
-rw-r--r--version/version.go2
4 files changed, 32 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 47baaf7d2..496340d93 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
GO ?= go
DESTDIR ?= /
-EPOCH_TEST_COMMIT ?= 0cb0849c722f3e1c41d2005488cc2951b8d16f53
+EPOCH_TEST_COMMIT ?= ab5dd390ccbb0dbb33b7a78cbb41cb3807a459d2
HEAD ?= HEAD
CHANGELOG_BASE ?= HEAD~
CHANGELOG_TARGET ?= HEAD
diff --git a/changelog.txt b/changelog.txt
index 918d10ba9..faea7734b 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,32 @@
+- Changelog for v0.9.2 (2018-09-14)
+ * Update release notes for 0.9.2
+ * change search test to look for fedora and not fedora-minimal
+ * Don't mount /dev/* if user mounted /dev
+ * add registry information to varlink info
+ * libpod/image/pull: Return image-pulling errors from doPullImage
+ * Update gitvalidation epoch to avoid a bad commit
+ * Update README to reflect current development efforts
+ * rootless: do not raise an error if the entrypoint is specified
+ * Add Buildah Podman relationship to README.md
+ * Swap default mount propagation from private to rprivate
+ * Add a way to disable port reservation
+ * Add notes to check version on problem
+ * Do not set rlimits if we are rootless
+ * Up default Podman rlimits to avoid max open files
+ * Search registries with an empty query
+ * Vendor in latest containers/image
+ * Remove duplicate code between create.go and run.go
+ * Add --interval flag to podman wait
+ * Add `podman rm --volumes` flag
+ * Vendor in latest containers/storage to eliminage deadlock
+ * do not build with devicemapper
+ * run different cgroup tests depending on conditions
+ * dont make python when running make
+ * Explicitly set default CNI network name in libpod.conf
+ * Pass on securityOpts from podInfraContainer to container added to pod.
+ * Bump gitvalidation epoch
+ * Bump to v0.9.2-dev
+
- Changelog for v0.9.1.1 (2018-09-10)
* Update release notes for 0.9.1.1
* Replace existing iptables handler with firewall code
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in
index be7b78227..71b4ac51b 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.9.2
+Version: 0.9.3
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 7943adee4..5d5ddbe6f 100644
--- a/version/version.go
+++ b/version/version.go
@@ -4,4 +4,4 @@ package version
// NOTE: remember to bump the version at the top
// of the top-level README.md file when this is
// bumped.
-const Version = "0.9.2-dev"
+const Version = "0.9.3-dev"