summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 202480a1e..ba679a303 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
GO ?= go
-EPOCH_TEST_COMMIT ?= ea5fad6c8b35d73f6cc16642bc56f428954aa36e
+EPOCH_TEST_COMMIT ?= 72c82fb79e0a903bc02db989d4c9b6d6f6979b17
HEAD ?= HEAD
CHANGELOG_BASE ?= HEAD~
CHANGELOG_TARGET ?= HEAD
diff --git a/changelog.txt b/changelog.txt
index a8dc8d865..dea1a212e 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,32 @@
+- Changelog for v0.7.3 (2018-07-20)
+ * Update psgo vendor
+ * Podman load/tag/save prepend localhost when no repository is present
+ * Pod ps now uses pod.Status()
+ * Added pod start and stop
+ * rootless: support a per-user mounts.conf
+ * secrets: parse only one mounts configuration file
+ * rootless: allow a per-user registries.conf file
+ * pull: get registries using the registries pkg
+ * rootless: allow a per-user storage.conf file
+ * rootless, docs: document the libpod.conf file used in rootless mode
+ * Let containers/storage keep track of mounts
+ * podman-top: use containers/psgo
+ * Vendor in latest code for storage,image, buildah
+ * Abort a test on nil containers, so that future tests don't panic
+ * Fix TestPostDeleteHooks on macOS
+ * Use `...` for a regexp constant to improve readability
+ * oci: keep exposed ports busy and leak the fd into conmon
+ * Dockerfile: install nmap-ncat
+ * Update podman_tutorial.md
+ * Update transfer.md
+ * Add missing podman commands
+ * Update gitvalidation epoch
+ * Fix ps filter with key=value labels
+ * rootless: require subids to be present
+ * Downgrade setup.py
+ * Bump gitvalidation epoch
+ * Bump to v0.7.3-dev
+
- Changelog for v0.7.2 (2018-07-13)
* Change logic for detecting conflicting flags in ps
* Update python directories to better support setup.py
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in
index 6a7273b88..e40cf47a7 100644
--- a/contrib/spec/podman.spec.in
+++ b/contrib/spec/podman.spec.in
@@ -51,7 +51,7 @@
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: podman
-Version: 0.7.3
+Version: 0.7.4
Release: #COMMITDATE#.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 36f546577..c6824cf5f 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.7.3-dev"
+const Version = "0.7.4-dev"