From 8f67b491685a81e8fc2acbf4674882b95d1527a2 Mon Sep 17 00:00:00 2001 From: Matt Rickard Date: Fri, 28 Oct 2016 08:30:23 -0700 Subject: [PATCH] Cut v0.12.1 Release --- CHANGELOG.md | 10 ++++++++++ Makefile | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 419b0fec40..4da9403d1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Minikube Release Notes +## Version 0.12.1 - 10/28/2016 +* Added docker-env support to the buildroot provisioner +* `minikube service` command now supports multiple ports +* Added `minikube service list` command +* Added `minikube completion bash` command to generate bash completion +* Add progress bars for downloading, switch to go-download +* Run kube-dns as addon instead of vendored in kube2sky +* Remove static UUID for xhyve driver +* Add option to specify network name for KVM + ## Version 0.12.0 - 10/21/2016 * Added support for the KUBECONFIG env var during 'minikube start' * Updated default k8s version to v1.4.3 diff --git a/Makefile b/Makefile index 2433043d55..6bbf6be103 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release VERSION_MAJOR ?= 0 VERSION_MINOR ?= 12 -VERSION_BUILD ?= 0 +VERSION_BUILD ?= 1 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) DEB_VERSION ?= $(VERSION_MAJOR).$(VERSION_MINOR)-$(VERSION_BUILD) INSTALL_SIZE ?= $(shell du out/minikube-windows-amd64.exe | cut -f1)