diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-10-11 16:53:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 16:53:55 -0400 |
commit | da5c89497f9d6ee5cb6e826d7db7cca5686ab4f7 (patch) | |
tree | 4708159a05f1f544eb9aa72b7e8f9578dbc70f5b | |
parent | 44b650c38e86ff87786c29113feb88e28ff541be (diff) | |
parent | 99d901265026574351eeef9baf19c01ea7421a31 (diff) | |
download | podman-da5c89497f9d6ee5cb6e826d7db7cca5686ab4f7.tar.gz podman-da5c89497f9d6ee5cb6e826d7db7cca5686ab4f7.tar.bz2 podman-da5c89497f9d6ee5cb6e826d7db7cca5686ab4f7.zip |
Merge pull request #1634 from mheon/bump-0.10.1
Bump to v0.10.1
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | changelog.txt | 81 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
4 files changed, 84 insertions, 3 deletions
@@ -1,6 +1,6 @@ GO ?= go DESTDIR ?= / -EPOCH_TEST_COMMIT ?= 63379c213325188a492d33981a6a525a19048d40 +EPOCH_TEST_COMMIT ?= 44b650c38e86ff87786c29113feb88e28ff541be HEAD ?= HEAD CHANGELOG_BASE ?= HEAD~ CHANGELOG_TARGET ?= HEAD diff --git a/changelog.txt b/changelog.txt index 879302ee0..a31cd26e9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,84 @@ +- Changelog for v0.10.1 (2018-10-11) + * Swap from map to channels for podman stop workers + * Add release notes for 0.10.1 + * Pass along syslog variable to podman cleanup processes + * Sort all command flags + * rootless: detect when user namespaces are not enabled + * Log an otherwise ignored error from joining a net ns + * Fix gofmt + * Add tests for --ip flag + * Update manpages for --ip flag + * Add --ip flag and plumbing into libpod + * Document --net as an alias of --network in podman run & create + * Update OCICNI vendor to 2d2983e4 + * Temporary commit to swap branches + * rootless: report more error messages from the startup phase + * rootless: fix an hang on older versions of setresuid/setresgid + * Update OCICNI vendor to e617a611 + * fix runlabel functions based on QA feedback + * Vendor latest containers/image + * Stop containers in parallel fashion + * wip + * remove hack/dind + * Vendor in latest github.com/containers/storage,image, buildah + * runlabel: execute /proc/self/exe and avoid recursion + * Re-add source-verify in cirrus-ci + * added links to buildah.io and podman.io to README.md + * Lower CPU/Memory usage by cirrus VMs + * skip userns tests on non-fedora distributions for now + * Remove Travis + * docker: Double quote array expansions to avoid re-splitting elements + * Ensure resolv.conf has the right label and path + * Remove no longer used libnetwork from vendor.conf + * Fix lint + * Drop libnetwork vendor and move the code into pkg/ + * Update libnetwork vendor to current master to fix CI + * Switch to using libnetwork's resolvconf package + * Add configuration for Cirrus-CI + * disable gce building of images + * re-add BR for golang compiler to contrib/spec/podman.spec.in + * completions: add checkpoint/restore completions + * tests: add checkpoint/restore test + * tutorial: add checkpoint/restore to tutorial + * docs: add checkpoint and restore man pages + * Add support to checkpoint/restore containers + * oci: split the stdout and stderr pipes + * oci: always set XDG_RUNTIME_DIR + * Fix pod status reporting for new Exited state + * Add ability for ubuntu to be tested + * selinux: drop superflous relabel + * rootless: always set XDG_RUNTIME_DIR + * Fix python tests + * Fix Wait() to allow Exited state as well as Stopped + * Fix cleanupRuntime to only save if container is valid + * Fix bug with exited state and container remove + * Address review comments and fix ps output + * Add ContainerStateExited and OCI delete() in cleanup() + * Need to allocate memory for hook struct + * Disable SELinux labeling if --privileged + * * Update documenation + * Implement pod varlink bindings + * Update docs to build a runc that works with systemd + * runtime: fix message which assumes the runtime is runc + * rootless: raise an error when trying to use cgroups + * Add --all flag to podman kill + * Add podman.io to README.md + * Vendor in the latest containers/storage, image and buildah + * Don't tmpcopyup on systemd cgroup + * Add container runlabel command + * run complex image names with short names + * Add buildah version and distribution to info + * Disable Fedora 29 and CentOS7 VM testing + * podman runs disabled containers and privileged containers as spc_t + * Update the OWNERS file so bot assigns sane reviewers + * rework CI tests to test on VMs + * Put openshift dockerfiles in test/install + * Bump gitvalidation epoch + * Bump to v0.9.4-dev + * contrib/python/*/Makefile: Fallback to unversioned 'python' + * Makefile: Drop PYTHON + * Makefile: Call contrib/python's clean regardless of HAS_PYTHON3 + - Changelog for v0.9.3.1 (2018-09-25) * Update release notes for 0.9.3.1 * Disable problematic SELinux code causing runc issues diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index a114d8384..c2d8fc59d 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.4 +Version: 0.10.2 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 fc6a6a1f9..0fd4e5aeb 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.4-dev" +const Version = "0.10.2-dev" |