summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-06-22 15:57:57 -0400
committerGitHub <noreply@github.com>2018-06-22 15:57:57 -0400
commit7182339d1abfd2859f04ecbb781a560de55e9384 (patch)
treed51a9096df44b5d397cd2d4537b7b6ab13c09711
parent55dd266ec1396038992db76283931e8bce04f1b3 (diff)
parentb8eeb4d128998b871082c3c3ce4e4e1a858c1b70 (diff)
downloadpodman-7182339d1abfd2859f04ecbb781a560de55e9384.tar.gz
podman-7182339d1abfd2859f04ecbb781a560de55e9384.tar.bz2
podman-7182339d1abfd2859f04ecbb781a560de55e9384.zip
Merge pull request #989 from mheon/bump-0.6.4
Bump to 0.6.4
-rw-r--r--Makefile2
-rw-r--r--changelog.txt41
-rw-r--r--contrib/spec/podman.spec.in2
-rw-r--r--version/version.go2
4 files changed, 44 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 419839de5..b808e09b3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
GO ?= go
-EPOCH_TEST_COMMIT ?= 9e134576e8eb047466706fa71a201def6d5d8159
+EPOCH_TEST_COMMIT ?= 55dd266ec1396038992db76283931e8bce04f1b3
HEAD ?= HEAD
CHANGELOG_BASE ?= HEAD~
CHANGELOG_TARGET ?= HEAD
diff --git a/changelog.txt b/changelog.txt
index c74a3d388..89c6144f3 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,44 @@
+- Changelog for v0.6.4 (2018-06-22)
+ * Add tests for podman refresh
+ * Point podman-refresh at the right manpage
+ * Add bash completions for podman refresh
+ * Add manpages for podman refresh
+ * Move podman refresh under the container subcommand
+ * Make CGroups cleanup optional on whether they exist
+ * Add podman refresh command
+ * Add Refresh() to ctrs to refresh state after db change
+ * Add information about the configuration files to the install docs
+ * Add unittests and fix bugs
+ * Fix docs on --sig-proxy to match current behaviour
+ * Podman history now prints out intermediate image IDs
+ * Add cap-add and cap-drop to build man page
+ * Option handling has become large and should be a shared function
+ * Fix image volumes access and mount problems on restart
+ * We are using err in defer function, needs to be defined name
+ * Update the version of conmon used in test
+ * install: need to install make on Fedora-like distros
+ * Vendor containers/storage for better error reporting on dups
+ * libpod: fix race with attach/start
+ * Implement SSH tunnels between client and podman server
+ * Add carriage return to log message when using --tty flag
+ * Errors from closing a netns on removal from DB are nonfatal
+ * Vendor in latest go-selinux
+ * Added --sort to ps
+ * Fix podman build -q
+ * Add extra debug so we can tell apart postdelete hooks
+ * hack/ostree_tag.sh: Fill in OSTree dependencies
+ * TLS verify is skipped per registry.
+ * Add missing functionality for podman build layers
+ * Add --all,-a flag to podman images
+ * Add MacAddress to inspect
+ * Update gitvalidation epoch
+ * top: make output tabular
+ * Add more network info ipv4/ipv6 and be more compatible with docker
+ * Do not run iptablesDNS workaround on IPv6 addresses
+ * Added --tls-verify functionality to podman search, with tests
+ * Bump gitvalidation epoch
+ * Bump to v0.6.4-dev
+
- Changelog for v0.6.3 (2018-06-15)
* spec: remove dead code
* test: add test for running a rootless container
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in
index a1aa5ff44..0837de8d8 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.6.4
+Version: 0.6.5
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 ea6f16b46..22522ed6f 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.6.4-dev"
+const Version = "0.6.5-dev"