From e8b38b8d8b6e35fe1546cd690cd8cab7d722bcdf Mon Sep 17 00:00:00 2001 From: tstromberg Date: Fri, 7 Feb 2020 16:21:06 -0800 Subject: [PATCH] Release bump for v1.7.2 --- CHANGELOG.md | 20 ++++++++++++++++++++ Makefile | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4280b036..20a21c3c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Release Notes +## Version 1.7.2 - 2020-02-07 + +* Fix to delete context when delete minikube [#6541](https://github.com/kubernetes/minikube/pull/6541) +* Fix usage of quotes in cruntime format strings [#6549](https://github.com/kubernetes/minikube/pull/6549) +* Add ca-certificates directory for distros that do not include it [#6545](https://github.com/kubernetes/minikube/pull/6545) +* kubeadm template: Combine apiserver certSANs with extraArgs [#6547](https://github.com/kubernetes/minikube/pull/6547) +* Add --install-addons=false toggle for users who don't want them [#6536](https://github.com/kubernetes/minikube/pull/6536) +* Fix a variety of bugs in `docker-env` output [#6540](https://github.com/kubernetes/minikube/pull/6540) +* Remove kubeadm pull images [#6514](https://github.com/kubernetes/minikube/pull/6514) + +Special thanks go out to our contributors for these fixes: + +- Anders F Björklund +- anencore94 +- David Taylor +- Priya Wadhwa +- Ruben +- Sharif Elgamal +- Thomas Strömberg + ## Version 1.7.1 - 2020-02-05 * Create directory using os.MkDirAll, as mkdir -p does not work on windows [#6508](https://github.com/kubernetes/minikube/pull/6508) diff --git a/Makefile b/Makefile index fab65a731..f656dee76 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 ?= 7 -VERSION_BUILD ?= 1 +VERSION_BUILD ?= 2 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).${VERSION_BUILD} VERSION ?= v$(RAW_VERSION) -- GitLab