From 55fcaa8609e0525f5cc5cccbfb487da2143df4fc Mon Sep 17 00:00:00 2001 From: Matt Rickard Date: Thu, 26 Oct 2017 11:01:12 -0700 Subject: [PATCH] Cut 0.23.0 release --- CHANGELOG.md | 17 +++++++++++++++++ Makefile | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9792aa6de0..1c151f7e5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Minikube Release Notes +# Version 0.23.0 - 10/26/2017 +* Upgraded to go 1.9 [#2113](https://github.com/kubernetes/minikube/pull/2113) +* Localkube is no longer packaged in minikube bin-data [#2089](https://github.com/kubernetes/minikube/pull/2089) +* Upgraded to Kubernetes 1.8 [#2088](https://github.com/kubernetes/minikube/pull/2088) +* Added more verbose logging to minikube start [#2078](https://github.com/kubernetes/minikube/pull/2078) +* Added CoreDNS as an Addon +* Updated Ingress Addon to v0.9.0-beta.15 +* Updated Dashboard to v1.7.0 +* Force the none driver to use netgo [#2074](https://github.com/kubernetes/minikube/pull/2074) +* [kvm driver] Driver now returns state.Running for DOM_SHUTDOWN [#2109](https://github.com/kubernetes/minikube/pull/2109) +* [localkube] Added support for CRI-O +* [kubeadm] Added support for CRI-O [#2052](https://github.com/kubernetes/minikube/pull/2052) +* [kubeadm] Added support for feature gates [#2037](https://github.com/kubernetes/minikube/pull/2037) +* [Minikube ISO] Bumped to version v0.23.6 [#2091](https://github.com/kubernetes/minikube/pull/2091) +* [Minikube ISO] Upgraded to Docker 17.05-ce [#1542](https://github.com/kubernetes/minikube/pull/1542) +* [Minikube ISO] Upgraded to CRI-O v1.0.0 [#2069](https://github.com/kubernetes/minikube/pull/2069) + # Version 0.22.3 - 10/3/2017 * Update dnsmasq to 1.14.5 [2022](https://github.com/kubernetes/minikube/pull/2022) * Windows cache path fix [2000](https://github.com/kubernetes/minikube/pull/2000) diff --git a/Makefile b/Makefile index 894e9ae0a6..673e47ccb6 100755 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 22 -VERSION_BUILD ?= 3 +VERSION_MINOR ?= 23 +VERSION_BUILD ?= 0 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)