diff options
-rw-r--r-- | changelog.txt | 29 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/changelog.txt b/changelog.txt index a8dc8d865..dea1a212e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,32 @@ +- Changelog for v0.7.3 (2018-07-20) + * Update psgo vendor + * Podman load/tag/save prepend localhost when no repository is present + * Pod ps now uses pod.Status() + * Added pod start and stop + * rootless: support a per-user mounts.conf + * secrets: parse only one mounts configuration file + * rootless: allow a per-user registries.conf file + * pull: get registries using the registries pkg + * rootless: allow a per-user storage.conf file + * rootless, docs: document the libpod.conf file used in rootless mode + * Let containers/storage keep track of mounts + * podman-top: use containers/psgo + * Vendor in latest code for storage,image, buildah + * Abort a test on nil containers, so that future tests don't panic + * Fix TestPostDeleteHooks on macOS + * Use `...` for a regexp constant to improve readability + * oci: keep exposed ports busy and leak the fd into conmon + * Dockerfile: install nmap-ncat + * Update podman_tutorial.md + * Update transfer.md + * Add missing podman commands + * Update gitvalidation epoch + * Fix ps filter with key=value labels + * rootless: require subids to be present + * Downgrade setup.py + * Bump gitvalidation epoch + * Bump to v0.7.3-dev + - Changelog for v0.7.2 (2018-07-13) * Change logic for detecting conflicting flags in ps * Update python directories to better support setup.py diff --git a/version/version.go b/version/version.go index 36f546577..dcf329706 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.7.3-dev" +const Version = "0.7.3" |