From 28a207c96a0d1bc0c584eef23d88e79cb2cee64b Mon Sep 17 00:00:00 2001 From: Tejal Desai Date: Tue, 5 May 2020 19:54:20 -0700 Subject: [PATCH] fix for adding docker credentials --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a0507a0..84a183902 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v0.21.0 Release - 2020-05-04 +This is the 21th release of Kaniko! Thank you for patience. + +This is minor release which fixes the `/kaniko/.docker` being removed in executor image +* Fixes #1227 - Readded the `/kaniko/.docker` directory [#1230](https://github.com/GoogleContainerTools/kaniko/pull/1230) + # v0.20.0 Release - 2020-05-04 This is the 20th release of Kaniko! Thank you for patience. Please give us feedback on how we are doing by taking a short [5 question survey](https://forms.gle/HhZGEM33x4FUz9Qa6) diff --git a/Makefile b/Makefile index 69b47199b..ea46df83f 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 20 +VERSION_MINOR ?= 21 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)