From d5556bf6a2e6f90f4213b70e8c4207b8a4e8ee8e Mon Sep 17 00:00:00 2001 From: Aaron Prindle Date: Wed, 3 May 2017 16:14:24 -0700 Subject: [PATCH] Cut 0.19.0 release --- CHANGELOG.md | 8 ++++++++ Makefile | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f226fe496..ac0285416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Minikube Release Notes +## Version 0.19.0 - 5/3/2017 +* Updated nginx ingress to v0.9-beta.4 +* Updated kube-dns to 1.14.1 +* Added optional `--profile` flag to all `minikube` commands to support multiple minikube instances +* Increased localkube boot speed by removing dependency on the network being up +* Improved integration tests to be more stable +* Fixed issue where using TPRs could cause localkube to crash + ## Version 0.18.0 - 4/6/2017 * Upgraded default kubernetes version to v1.6.0 * Mount command on macOS xhyve diff --git a/Makefile b/Makefile index 744e2ee2c..9d7674eb2 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 18 +VERSION_MINOR ?= 19 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) DEB_VERSION ?= $(VERSION_MAJOR).$(VERSION_MINOR)-$(VERSION_BUILD) @@ -25,7 +25,7 @@ DARWIN_BUILD_IMAGE ?= karalabe/xgo-1.7.3 ISO_BUILD_IMAGE ?= $(REGISTRY)/buildroot-image # The iso will be versioned the same as minikube -ISO_VERSION ?= $(VERSION) +ISO_VERSION ?= v0.18.0 ISO_BUCKET ?= minikube/iso GOOS ?= $(shell go env GOOS) -- GitLab