From 9abfb51865e9c78ff455b507771be95c394797c1 Mon Sep 17 00:00:00 2001 From: Matt Rickard Date: Mon, 19 Jun 2017 14:33:20 -0700 Subject: [PATCH] Cut 0.20.0 Release --- CHANGELOG.md | 18 ++++++++++++++++++ Makefile | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56eeddaac5..6a54edb95e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Minikube Release Notes +## Version 0.20.0 - 6/17/2017 +* Updated default Kubernetes version to 1.6.4 +* Added Local Registry Addon `minikube addons enable registry` [#1583](https://github.com/kubernetes/minikube/pull/1583) +* Fixed kube-DNS addon failures +* Bumped default ISO version to 0.20.0 +* Fixed mtime issue on macOS [#1594](https://github.com/kubernetes/minikube/pull/1594) +* Use --dns-domain for k8s API server cert generation [#1589](https://github.com/kubernetes/minikube/pull/1589) +* Added `minikube update-context` command [#1578](https://github.com/kubernetes/minikube/pull/1578) +* Added kubeconfig context and minikube ip to `minikube status` [#1578](https://github.com/kubernetes/minikube/pull/1578) +* Use native golang ssh [#1571](https://github.com/kubernetes/minikube/pull/1571) +* Don't treat stopping stoppped hosts as error [#1606](https://github.com/kubernetes/minikube/pull/1606) +* Bumped ingress addon to 0.9-beta.8 +* Removed systemd dependency for None driver [#1592](https://github.com/kubernetes/minikube/pull/1592) + +* [Minikube ISO] Enabled IP_VS, MACVLAN, and VXLAN Kernel modules +* [Minikube ISO] Increase number of inodes +* [Minikube ISO] Use buildroot branch 2017-02 + ## Version 0.19.1 - 5/30/2017 * Fixed issue where using TPRs could cause localkube to crash * Added mount daemon that can be started using `minikube start --mount --mount-string="/path/to/mount"`. Cleanup of mount handled by `minikube delete` diff --git a/Makefile b/Makefile index b861b36239..e48c264b36 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 19 +VERSION_MINOR ?= 20 VERSION_BUILD ?= 1 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) DEB_VERSION ?= $(VERSION_MAJOR).$(VERSION_MINOR)-$(VERSION_BUILD)