diff --git a/CHANGELOG.md b/CHANGELOG.md index 57f06946f2554067b9c20846cdb8a106cb3d232f..9564c856e0ac634afd2b1a90fdacef511d7a3640 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Minikube Release Notes +# Version 0.24.1 - 11/30/2017 +* Add checksum verification for localkube +* Bump minikube iso to v0.23.6 + # Version 0.24.0 - 11/29/2017 * Deprecated xhyve and kvm drivers [#2227](https://github.com/kubernetes/minikube/pull/2227) * Added support for a "rootfs" layer in .minikube/files [#2110](https://github.com/kubernetes/minikube/pull/2110) diff --git a/Makefile b/Makefile index c72516b50f30b6f789c27e34655beceebdb872df..d3790270e7d84847bbb746e190b9969210d209b2 100755 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release VERSION_MAJOR ?= 0 VERSION_MINOR ?= 24 -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)