From 9a30501c444660641f17a0369f9b74c7c8978de5 Mon Sep 17 00:00:00 2001 From: Aaron Prindle Date: Thu, 29 Jun 2023 09:17:24 -0700 Subject: [PATCH] chore(release): release v1.12.1 (#2604) --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11254698b..11c3e4160 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +# v1.12.1 Release 2023-06-29 + +The executor images in this release are: +``` +gcr.io/kaniko-project/executor:v1.12.1 +gcr.io/kaniko-project/executor:latest +``` + +The debug images are available at: +``` +gcr.io/kaniko-project/executor:debug +gcr.io/kaniko-project/executor:v1.12.1-debug +``` + +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:v1.12.1-slim +``` + +The warmer images are available at: +``` +gcr.io/kaniko-project/warmer:v1.12.1 +gcr.io/kaniko-project/warmer:latest +``` + +Fixes: +* fix: resolve issue where warmer CLI always validated optional arg -> breakage for majority of users [#2603](https://github.com/GoogleContainerTools/kaniko/pull/2603) + + # v1.12.0 Release 2023-06-28 The executor images in this release are: diff --git a/Makefile b/Makefile index 18000e0c6..5762425ef 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release VERSION_MAJOR ?= 1 VERSION_MINOR ?= 12 -VERSION_BUILD ?= 0 +VERSION_BUILD ?= 1 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION_PACKAGE = $(REPOPATH/pkg/version)