From a0c96b4edcaeee437243484f5880833518d06551 Mon Sep 17 00:00:00 2001 From: Tejal Desai Date: Mon, 26 Apr 2021 09:38:29 -0700 Subject: [PATCH] release v1.6 (#1634) --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ Makefile | 4 ++-- 2 files changed, 39 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5f25c3e24..19a18ebdee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +# v1.6.0 Release 2021-04-23 +This is April's 2021 release. + +The executor images in this release are: +``` +gcr.io/kaniko-project/executor:v1.6.0 +gcr.io/kaniko-project/executor:latest +``` +The debug images are available at: +``` +gcr.io/kaniko-project/executor:debug +gcr.io/kaniko-project/executor:debug-v1.6.0 +``` + +The slim executor images which don't contain any authentication binaries are available at: +``` +gcr.io/kaniko-project/executor:slim +gcr.io/kaniko-project/executor:slim-v1.6.0 +``` + +* Support warming images by digest [#1629](https://github.com/GoogleContainerTools/kaniko/pull/1629) +* Fix resolution of Dockerfile relative dockerignore [#1607](https://github.com/GoogleContainerTools/kaniko/pull/1607) +* create parent directory before writing digest files [#1612](https://github.com/GoogleContainerTools/kaniko/pull/1612) +* adds ignore-path command arguments to executor [#1622](https://github.com/GoogleContainerTools/kaniko/pull/1622) +* Specifying a tarPath will push the image as well [#1597](https://github.com/GoogleContainerTools/kaniko/pull/1597) + +Huge thank you for this release towards our contributors: +- Chris Hoffman +- Colin +- Jon Friesen +- Lars Gröber +- Sascha Schwarze +- Tejal Desai +- Viktor Farcic +- Vivek Kumar +- priyawadhwa + # v1.5.2 Release 2021-03-30 The executor images in this release are: diff --git a/Makefile b/Makefile index 1fbb6c2975..4277dc9841 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ # Bump these on release VERSION_MAJOR ?= 1 -VERSION_MINOR ?= 5 -VERSION_BUILD ?= 2 +VERSION_MINOR ?= 6 +VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION_PACKAGE = $(REPOPATH/pkg/version)