diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-03-01 18:03:50 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-03-01 18:03:50 -0500 |
commit | d5997dcb95d27c858dc23abdb76ad253d5b7d277 (patch) | |
tree | 265b84b1ae0c577a1b8bfa25eddadf0b50893345 | |
parent | cabfc9b6fb16c5b55d70140182496bbe129f6a4b (diff) | |
download | podman-d5997dcb95d27c858dc23abdb76ad253d5b7d277.tar.gz podman-d5997dcb95d27c858dc23abdb76ad253d5b7d277.tar.bz2 podman-d5997dcb95d27c858dc23abdb76ad253d5b7d277.zip |
Bump to v1.1.1v1.1.1
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
-rw-r--r-- | changelog.txt | 43 | ||||
-rw-r--r-- | contrib/spec/podman.spec.in | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
3 files changed, 45 insertions, 2 deletions
diff --git a/changelog.txt b/changelog.txt index 803aad796..9dd0ae2d1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,46 @@ +- Changelog for v1.1.1 (2019-03-01) + * Update release notes for v1.1.1 + * Pull image for runlabel if not local + * Fix SystemExec completion race + * Fix link inconsistencies in man pages + * Verify that used OCI runtime supports checkpoint + * Should be defaulting to pull not pull-always + * podman-commands script: refactor + * Move Alias lines to descriptions of commands + * Fix usage messages for podman image list, rm + * Fix -s to --storage-driver in baseline test + * No podman container ps command exists + * Allow Exec API user to override streams + * fix up a number of misplace commands + * rootless, new[ug]idmap: on failure add output + * [ci skip] Critical note about merge bot + * podman port fix output + * Fix ignored --time argument to podman restart + * secrets: fix fips-mode with user namespaces + * Fix four errors tagged by Cobra macro debugging + * Clean up man pages to match commands + * Add debugging for errors to Cobra compatibility macros + * Command-line input validation: reject unused args + * Fix ignored --stop-timeout flag to 'podman create' + * fixup! Incorporate review feedback + * fixup! missed some more: + * fixup! Correction to 'checkpoint' + * Followup to #2456: update examples, add trust + * podman create: disable interspersed opts + * fix up a number of misplace commands + * Add a task to Cirrus gating to build w/o Varlink + * Skip checkpoint/restore tests on Fedora for now + * Fix build for non-Varlink-tagged Podman + * Remove restore as podman subcommand + * Better usage synopses for subcommands + * Bump gitvalidation epoch + * Bump to v1.2.0-dev + * Centralize setting default volume path + * Ensure volume path is set appropriately by default + * Move all storage configuration defaults into libpod + * rename pod when we have a name collision with a container + * podman remote-client readme + - Changelog for v1.1.0 (2019-02-26) * Vendor in latest buildah 1.7.1 * volume: do not create a volume if there is a bind diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 703b942b6..9a0147f4d 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: 1.2.0 +Version: 1.1.1 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 89b5fbd8b..a9b2202b5 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 = "1.2.0-dev" +const Version = "1.1.1" // RemoteAPIVersion is the version for the remote // client API. It is used to determine compatibility |