From 8e2493a18c2e2acbcd392f4f815232c1a2d59333 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Fri, 8 Nov 2019 10:48:53 -0800 Subject: [PATCH] update to v0.14.0 --- CHANGELOG.md | 21 +++++++++++++++++++++ Makefile | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98614d106..670e2522e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# v0.14.0 Release - 2019-11-08 + +## New Features +* Added --image-name-with-digest flag [#841](https://github.com/GoogleContainerTools/kaniko/pull/841) +* Add support to download context file from Azure Blob Storage [#816](https://github.com/GoogleContainerTools/kaniko/pull/816) +* Add BUILD_ARGs to ease use of proxy [#810](https://github.com/GoogleContainerTools/kaniko/pull/810) + +## Bug Fixes +* fix tests for default home [#824](https://github.com/GoogleContainerTools/kaniko/pull/824) +* Issue #439 Strip out double quotes in ARG value [#834](https://github.com/GoogleContainerTools/kaniko/pull/834) +* Fixes caching with COPY command [#773](https://github.com/GoogleContainerTools/kaniko/pull/773) +* 828: clean up docker doc, fix context var in run cmd [#829](https://github.com/GoogleContainerTools/kaniko/pull/829) +* fix build_args in MakeFile, have Travis run make images to preven issue in future [#821](https://github.com/GoogleContainerTools/kaniko/pull/821) + +## Updates and Refactors +* changing debug to trace [#825](https://github.com/GoogleContainerTools/kaniko/pull/825) + +## Documentation +* Details about --tarPath usage improved [#811](https://github.com/GoogleContainerTools/kaniko/pull/811) + + # v0.13.0 Release - 2019-10-04 ## New Features diff --git a/Makefile b/Makefile index 4b9cb25df..6f44fe330 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 13 +VERSION_MINOR ?= 14 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)