diff --git a/CHANGELOG.md b/CHANGELOG.md index 287df06cd..63d766485 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v0.3.0 Release - 7/31/2018 +New Features +* Local integration testing [#256](https://github.com/GoogleContainerTools/kaniko/pull/256) +* Add --target flag for multistage builds [#255](https://github.com/GoogleContainerTools/kaniko/pull/255) +* Look for on cluster credentials using k8s chain [#243](https://github.com/GoogleContainerTools/kaniko/pull/243) + +Bug Fixes +* Kill grandchildren spun up by child processes [#247](https://github.com/GoogleContainerTools/kaniko/issues/247) +* Fix bug in copy command [#221](https://github.com/GoogleContainerTools/kaniko/issues/221) +* Multi-stage errors when referencing earlier stages [#233](https://github.com/GoogleContainerTools/kaniko/issues/233) + + # v0.2.0 Release - 7/09/2018 New Features diff --git a/Makefile b/Makefile index 0aa4b627a..fcd8a2b38 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 2 +VERSION_MINOR ?= 3 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) diff --git a/deploy/cloudbuild-release.yaml b/deploy/cloudbuild-release.yaml index 789ec2159..a86b0b0da 100644 --- a/deploy/cloudbuild-release.yaml +++ b/deploy/cloudbuild-release.yaml @@ -4,9 +4,17 @@ steps: - name: "gcr.io/cloud-builders/docker" args: ["build", "-f", "deploy/Dockerfile", "-t", "gcr.io/kaniko-project/executor:$TAG_NAME", "."] + - name: "gcr.io/cloud-builders/docker" + args: ["tag", "gcr.io/kaniko-project/executor:$TAG_NAME", + "gcr.io/kaniko-project/executor:latest"] # Then, we want to build kaniko:debug - name: "gcr.io/cloud-builders/docker" args: ["build", "-f", "deploy/Dockerfile_debug", "-t", "gcr.io/kaniko-project/executor:debug-$TAG_NAME", "."] + - name: "gcr.io/cloud-builders/docker" + args: ["tag", "gcr.io/kaniko-project/executor:debug-$TAG_NAME", + "gcr.io/kaniko-project/executor:debug"] images: ["gcr.io/kaniko-project/executor:$TAG_NAME", - "gcr.io/kaniko-project/executor:debug-$TAG_NAME"] + "gcr.io/kaniko-project/executor:latest", + "gcr.io/kaniko-project/executor:debug-$TAG_NAME", + "gcr.io/kaniko-project/executor:debug"]