From e2f708af93a4024e5e9e48de0cd809ba9081b821 Mon Sep 17 00:00:00 2001 From: Matt Rickard Date: Mon, 23 Apr 2018 14:27:25 -0700 Subject: [PATCH] Cut v0.5.0 release --- CHANGELOG.md | 17 +++++++++++++++++ Makefile | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f1ef69473c..7957f4d5318 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# v0.5.0 Release - 4/23/2018 +New Features +* Added kaniko builder +* Added support for "remote-manifests" in kubectl deployer +* `skaffold dev` now performs a cleanup of deployed resources on exit +* `skaffold dev` redeploys when deploy dependencies are changed (only kubectl deployer currently) + +Bug Fixes +* GCB builder now uses tags correctly +* Supports multi-stage dockerfiles with onbuild commands +* Better error messages +* Fixed tagger working directory + +Updates +* Switched from containers/image to google/go-containerregistry +* Integration tests now run in separate namespaces + # v0.4.0 Release - 4/12/2018 New Features * Added `skaffold fix` command to migrate configs from v1alpha1 to v1alpha2 diff --git a/Makefile b/Makefile index 7e5220dacf3..27ca30ea74b 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 4 +VERSION_MINOR ?= 5 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)