diff --git a/changelog.txt b/changelog.txt index 6373f219cd..bc141cceba 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,26 @@ +- Changelog for v0.12.1.1 (2018-12-07) + * Update release notes for v0.12.1.1 + * Fix errors where OCI hooks directory does not exist + * add timeout to pod stop + * Remove manual handling of insecure registries in (podman search) + * Fix reporting the registries.conf path on error + * Remove manual handling of insecure registries in doPullImage + * Remove the forceSecure parameter on the pull call stack + * Remove manual handling of insecure registries in PushImageToReference + * Factor out the registries.conf location code in pkg/registries + * Remove the forceSecure parameter of Image.PushImageTo* + * Minimally update for the DockerInsecureSkipTLSVerify type change + * Bump gitvalidation epoch + * Bump to v0.12.2-dev + * Fix build on non-Linux + * Remove some unused data structures and code + * Vendor buildah after merging https://github.com/containers/buildah/pull/1214 + * Update containers/image to 63a1cbdc5e6537056695cf0d627c0a33b334df53 + * Cirrus: Document and codify base-image production + * Cirrus: Use Makefile for image-building + * Refactor BooleanAction to mimic golang interface + * generate kube + - Changelog for v0.12.1 (2018-12-06) * Update release notes for 0.12.1 * bind mount /etc/resolv.conf|hosts in pods diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 20e2a84ea6..6f743e0633 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.12.2 +Version: 0.12.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 45dc93d91a..def2589509 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.12.2-dev" +const Version = "0.12.1.1"