diff --git a/CHANGELOG.md b/CHANGELOG.md index fe559157a9953e0e3ac85214b002fab1af65a0cf..f0829a83f7d420078fe1bfd6664f338a81c83f6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Release Notes +## Version 1.9.0- 2020-03-26 + +New features & improvements + +* Update DefaultKubernetesVersion to v1.18.0 [#7235](https://github.com/kubernetes/minikube/pull/7235) +* Add --vm flag for users who want to autoselect only VM's [#7068](https://github.com/kubernetes/minikube/pull/7068) +* Add 'stable' and 'latest' as valid kubernetes-version values [#7212](https://github.com/kubernetes/minikube/pull/7212) + +* gpu addon: privileged mode no longer required [#7149](https://github.com/kubernetes/minikube/pull/7149) +* Add sch_tbf and extend filter ipset kernel module for bandwidth shaping [#7255](https://github.com/kubernetes/minikube/pull/7255) +* Parse --disk-size and --memory sizes with binary suffixes [#7206](https://github.com/kubernetes/minikube/pull/7206) + + +Bug Fixes + +* Re-initalize failed Kubernetes clusters [#7234](https://github.com/kubernetes/minikube/pull/7234) +* do not override hostname if extraConfig is specified [#7238](https://github.com/kubernetes/minikube/pull/7238) +* Enable HW_RANDOM_VIRTIO to fix sshd startup delays [#7208](https://github.com/kubernetes/minikube/pull/7208) +* hyperv Delete: call StopHost before removing VM [#7160](https://github.com/kubernetes/minikube/pull/7160) + +Huge thank you for this release towards our contributors: + +- Anders F Björklund +- Medya Ghazizadeh +- Priya Wadhwa +- Sharif Elgamal +- Thomas Strömberg +- Tom +- Vincent Link +- Yang Keao +- Zhongcheng Lao +- vikkyomkar + + ## Version 1.9.0-beta.2 - 2020-03-21 New features & improvements diff --git a/Makefile b/Makefile index 43bb6b9cf2bf8f6727d0657cb34ab6ec22fffc95..049427610cf53757763b531836ace7360262c82c 100755 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release - and please check ISO_VERSION for correctness. VERSION_MAJOR ?= 1 VERSION_MINOR ?= 9 -VERSION_BUILD ?= 0-beta.2 +VERSION_BUILD ?= 0 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION ?= v$(RAW_VERSION)