diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fd8472b0d9af26b76c3663d8b707819c58d93f5..3a83f3dc13382679e2612cd5db7ada8a4469290b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Minikube Release Notes +# Version 0.22.2 - 9/15/2017 +* Fix path issue on windows [1954](https://github.com/kubernetes/minikube/pull/1959) +* Added experimental kubeadm bootstrapper [1903](https://github.com/kubernetes/minikube/pull/1903) +* Fixed Hyper-V KVP daemon [1958](https://github.com/kubernetes/minikube/pull/1958) + # Version 0.22.1 - 9/6/2017 * Fix for chmod error on windows [1933](https://github.com/kubernetes/minikube/pull/1933) diff --git a/Makefile b/Makefile index bfe12bf6385257a26d300d3b292d097f7c094abb..59b5e5362ce174359db63a1e9d6c960cdd63f20c 100755 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release VERSION_MAJOR ?= 0 VERSION_MINOR ?= 22 -VERSION_BUILD ?= 1 +VERSION_BUILD ?= 2 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) @@ -26,7 +26,7 @@ MINIKUBE_BUILD_IMAGE ?= karalabe/xgo-1.8.3 LOCALKUBE_BUILD_IMAGE ?= gcr.io/google_containers/kube-cross:v1.8.3-1 ISO_BUILD_IMAGE ?= $(REGISTRY)/buildroot-image -ISO_VERSION ?= v0.23.3 +ISO_VERSION ?= v0.23.4 ISO_BUCKET ?= minikube/iso GOOS ?= $(shell go env GOOS)