diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-02-11 08:57:41 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-02-11 08:57:41 -0500 |
commit | 2c74edd0ac6509d6e533cb4e012e3e3f9e03434d (patch) | |
tree | 59d3807362c165ad6b41c24f594b631a9163ecd8 | |
parent | 6226e24d40310d451a4c357a6bcc3ab81f27e876 (diff) | |
download | podman-2c74edd0ac6509d6e533cb4e012e3e3f9e03434d.tar.gz podman-2c74edd0ac6509d6e533cb4e012e3e3f9e03434d.tar.bz2 podman-2c74edd0ac6509d6e533cb4e012e3e3f9e03434d.zip |
Bump to v1.0.1v1.0.1
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
-rw-r--r-- | changelog.txt | 17 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/changelog.txt b/changelog.txt index 8ee11cdc4..836ff7ed7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,20 @@ +- Changelog for v1.0.1 (2019-02-11): + * Fix tests after cherry-picking + * rootless: join both userns and mount namespace with --pod + * spec: add nosuid,noexec,nodev to ro bind mount + * rootless: create the userns immediately when creating a new pod + * Preserve exited state across reboot + * libpod/image: Use RepoDigests() in Inspect() + * podman image prune -- implement all flag + * Add varlink support for prune + * Make --quiet work in podman create/run + * Show a better error message when podman info fails during a refresh + * Vendor in latest opencontainers/selinux + * rootless: fix --pid=host without --privileged + * Do not unmarshal into c.config.Spec + * podman-inspect: don't ignore errors + * Ensure that wait exits on state transition + - Changelog for v1.0.0 (2018-1-11) * Update release notes for v1.0 * Remove clientintegration from Makefile diff --git a/version/version.go b/version/version.go index ea5a92286..30a589635 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 = "1.0.1-dev" +const Version = "1.0.1" |