diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-23 19:42:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 19:42:50 +0200 |
commit | 9352c342d62bbf3b49b0d4d67e8704cbbcd212cd (patch) | |
tree | 9a0aa76cc11555595a38ebc443e0a165759e3b21 | |
parent | dade9159e7a0f848e101221274faa3f4f03cf132 (diff) | |
parent | d7d5068c6b50aa35529ae7dd24e654f0e2fc9545 (diff) | |
download | podman-9352c342d62bbf3b49b0d4d67e8704cbbcd212cd.tar.gz podman-9352c342d62bbf3b49b0d4d67e8704cbbcd212cd.tar.bz2 podman-9352c342d62bbf3b49b0d4d67e8704cbbcd212cd.zip |
Merge pull request #7069 from mheon/bump_203
Bump to v2.0.3
-rw-r--r-- | changelog.txt | 49 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 51 insertions, 2 deletions
diff --git a/changelog.txt b/changelog.txt index 72acb5594..51161c020 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,52 @@ +- Changelog for v2.0.3 (2020-07-23): + * Drop a nonfunctional test in test/apiv2 + * Update release notes for v2.0.3 + * Fix handling of entrypoint + * log API: add context to allow for cancelling + * fix API: Create container with an invalid configuration + * Remove all instances of named return "err" from Libpod + * Fix: Correct connection counters for hijacked connections + * Fix: Hijacking v2 endpoints to follow rfc 7230 semantics + * Remove hijacked connections from active connections list + * version/info: format: allow more json variants + * Correctly print STDOUT on non-terminal remote exec + * Fix container and pod create commands for remote create + * Mask out /sys/dev to prevent information leak from the host + * Ensure sig-proxy default is propagated in start + * Add SystemdMode to inspect for containers + * When determining systemd mode, use full command + * Fix lint + * Populate remaining unused fields in `pod inspect` + * Include infra container information in `pod inspect` + * play-kube: add suport for "IfNotPresent" pull type + * docs: user namespace can't be shared in pods + * Fix "Error: unrecognized protocol \"TCP\" in port mapping" + * Error on rootless mac and ip addresses + * Fix & add notes regarding problematic language in codebase + * abi: set default umask and rlimits + * Used reference package with errors for parsing tag + * fix: system df error when an image has no name + * Fix Generate API title/description + * Add noop function disable-content-trust + * fix play kube doesn't override dockerfile ENTRYPOINT + * Support default profile for apparmor + * Bump github.com/containers/common to v0.14.6 + * events endpoint: backwards compat to old type + * events endpoint: fix panic and race condition + * Switch references from libpod.conf to containers.conf + * podman.service: set type to simple + * podman.service: set doc to podman-system-service + * podman.service: use default registries.conf + * podman.service: use default killmode + * podman.service: remove stop timeout + * systemd: symlink user->system + * vendor golang.org/x/text@v0.3.3 + * Fix a bug where --pids-limit was parsed incorrectly + * search: allow wildcards + * [CI:DOCS]Do not copy policy.json into gating image + * Fix systemd pid 1 test + * Cirrus: Rotate keys post repo. rename + - Changelog for v2.0.2 (2020-07-07): * Finalize release notes for Podman v2.0.2 * fix race condition in `libpod.GetEvents(...)` diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index bf51c76ae..cc3eb63a4 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -42,7 +42,7 @@ Epoch: 99 %else Epoch: 0 %endif -Version: 2.0.3 +Version: 2.0.4 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 ef332ab08..8346afcde 100644 --- a/version/version.go +++ b/version/version.go @@ -4,7 +4,7 @@ package version // NOTE: remember to bump the version at the top // of the top-level README.md file when this is // bumped. -const Version = "2.0.3-dev" +const Version = "2.0.4-dev" // APIVersion is the version for the remote // client API. It is used to determine compatibility |