Cut 0.26.1 release

pull/2748/head v0.26.1
dlorenc 2018-04-17 13:43:37 -07:00 committed by dlorenc
parent 258d1e149c
commit 6ded2b647d
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,11 @@
# Minikube Release Notes # Minikube Release Notes
# Version 0.26.1 - 4/17/2018
* Mark hyperkit, kvm2 and none drivers as supported [#2734](https://github.com/kubernetes/minikube/pull/2723) and [#2728](https://github.com/kubernetes/minikube/pull/2728)
* Bug fix for hyper-v driver [#2719](https://github.com/kubernetes/minikube/pull/2719)
* Add back CRI preflight ignore [#2723](https://github.com/kubernetes/minikube/pull/2723)
* Fix preflight checks on clusters <1.9 [#2721](https://github.com/kubernetes/minikube/pull/2721)
# Version 0.26.0 - 4/3/2018 # Version 0.26.0 - 4/3/2018
* Update to Kubernetes 1.10 [#2657](https://github.com/kubernetes/minikube/pull/2657) * Update to Kubernetes 1.10 [#2657](https://github.com/kubernetes/minikube/pull/2657)
* Update Nginx Ingress Plugin to 0.12.0 [#2644](https://github.com/kubernetes/minikube/pull/2644) * Update Nginx Ingress Plugin to 0.12.0 [#2644](https://github.com/kubernetes/minikube/pull/2644)

View File

@ -15,7 +15,7 @@
# Bump these on release # Bump these on release
VERSION_MAJOR ?= 0 VERSION_MAJOR ?= 0
VERSION_MINOR ?= 26 VERSION_MINOR ?= 26
VERSION_BUILD ?= 0 VERSION_BUILD ?= 1
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
DEB_VERSION ?= $(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) INSTALL_SIZE ?= $(shell du out/minikube-windows-amd64.exe | cut -f1)