From fbac776c1d10d0b519c23a7b1a5382355b0e80aa Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Fri, 31 Jan 2020 16:30:14 -0800 Subject: [PATCH 1/3] Update Makefile and CHANGELOG --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c360769bbc1..60df7c6f93b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Release Notes +## Version 1.7.0 - 2020-01-31 + +* Add docker run-time for kic driver [#6436](https://github.com/kubernetes/minikube/pull/6436) +* Add addon enablement to start [#6440](https://github.com/kubernetes/minikube/pull/6440) +* Configure etcd and kube-proxy metrics to listen on minikube node IP [#6322](https://github.com/kubernetes/minikube/pull/6322) +* add container runtime info to profile list [#6409](https://github.com/kubernetes/minikube/pull/6409) +* Allow 'profiles list' to work even if a profile has no control plane [#6450](https://github.com/kubernetes/minikube/pull/6450) +* status: Explicitly state that the cluster does not exist [#6438](https://github.com/kubernetes/minikube/pull/6438) +* Do not use an arch suffix for the coredns name [#6243](https://github.com/kubernetes/minikube/pull/6243) +* Allow building storage-provisioner for other arch [#6257](https://github.com/kubernetes/minikube/pull/6257) +* Prevent registry-creds configure from failing when a secret does not exist. [#6380](https://github.com/kubernetes/minikube/pull/6380) +* improve checking modprob netfilter [#6427](https://github.com/kubernetes/minikube/pull/6427) +* Update kvm2.md [#6267](https://github.com/kubernetes/minikube/pull/6267) + +Huge thank you for this release towards our contributors: + +- Anders Björklund +- Bjørn Harald Fotland +- Chance Zibolski +- Kim Bao Long +- Medya Ghazizadeh +- Priya Wadhwa +- Sharif Elgamal +- Thomas Strömberg +- akshay + ## Version 1.7.0-beta.1 - 2020-01-24 * Add 'pause' command to freeze Kubernetes cluster [#5962](https://github.com/kubernetes/minikube/pull/5962) diff --git a/Makefile b/Makefile index e460ac2886f6..1d299ac758fa 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 ?= 0-beta.1 +VERSION_BUILD ?= 0 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).${VERSION_BUILD} VERSION ?= v$(RAW_VERSION) From 5be02875b5732681ed5bec1c7a002432bae79a92 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Fri, 31 Jan 2020 16:39:48 -0800 Subject: [PATCH 2/3] remove non user facing PR --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60df7c6f93b2..225931ba9fd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,6 @@ * Allow building storage-provisioner for other arch [#6257](https://github.com/kubernetes/minikube/pull/6257) * Prevent registry-creds configure from failing when a secret does not exist. [#6380](https://github.com/kubernetes/minikube/pull/6380) * improve checking modprob netfilter [#6427](https://github.com/kubernetes/minikube/pull/6427) -* Update kvm2.md [#6267](https://github.com/kubernetes/minikube/pull/6267) Huge thank you for this release towards our contributors: From a540310c564a9edce27033e24b94b2f32ed541fc Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Fri, 31 Jan 2020 22:13:25 -0800 Subject: [PATCH 3/3] Update version to beta.2 --- CHANGELOG.md | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 225931ba9fd3..957e2e1025f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release Notes -## Version 1.7.0 - 2020-01-31 +## Version 1.7.0-beta.2 - 2020-01-31 * Add docker run-time for kic driver [#6436](https://github.com/kubernetes/minikube/pull/6436) * Add addon enablement to start [#6440](https://github.com/kubernetes/minikube/pull/6440) diff --git a/Makefile b/Makefile index 1d299ac758fa..4a210cf7d517 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 ?= 0 +VERSION_BUILD ?= 0-beta.2 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).${VERSION_BUILD} VERSION ?= v$(RAW_VERSION)