diff --git a/CHANGELOG.md b/CHANGELOG.md index 2131544e97..9fd8472b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Minikube Release Notes +# Version 0.22.1 - 9/6/2017 +* Fix for chmod error on windows [1933](https://github.com/kubernetes/minikube/pull/1933) + # Version 0.22.0 - 9/6/2017 * Made secure serving the default for all components and disabled insecure serving [#1694](https://github.com/kubernetes/minikube/pull/1694) * Increased minikube boot speed by caching docker images [#1881](https://github.com/kubernetes/minikube/pull/1881) diff --git a/Makefile b/Makefile index 5423ec6975..ae3645b646 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release VERSION_MAJOR ?= 0 VERSION_MINOR ?= 22 -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)