From 0e25215c0ad753ad635d656e9125f1addd644acb Mon Sep 17 00:00:00 2001 From: Ilya Zuyev Date: Wed, 27 Jan 2021 14:45:53 -0800 Subject: [PATCH 1/3] Bump minikube version to 1.17.1 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4d137b5836ea..ce2c100c67f5 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release - and please check ISO_VERSION for correctness. VERSION_MAJOR ?= 1 VERSION_MINOR ?= 17 -VERSION_BUILD ?= 0 +VERSION_BUILD ?= 1 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION ?= v$(RAW_VERSION) @@ -23,10 +23,10 @@ KUBERNETES_VERSION ?= $(shell egrep "DefaultKubernetesVersion =" pkg/minikube/co KIC_VERSION ?= $(shell egrep "Version =" pkg/drivers/kic/types.go | cut -d \" -f2) # Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions -ISO_VERSION ?= v1.17.0 +ISO_VERSION ?= v1.17.1 # Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta DEB_VERSION ?= $(subst -,~,$(RAW_VERSION)) -DEB_REVISION ?= 2 +DEB_REVISION ?= 0 RPM_VERSION ?= $(DEB_VERSION) RPM_REVISION ?= 0 From 5d1deaa014c8f93e66dbec0f46b942fe20228661 Mon Sep 17 00:00:00 2001 From: Ilya Zuyev Date: Wed, 27 Jan 2021 15:54:27 -0800 Subject: [PATCH 2/3] Revert ISO version back to 1.17.0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce2c100c67f5..69c1e161e07e 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ KUBERNETES_VERSION ?= $(shell egrep "DefaultKubernetesVersion =" pkg/minikube/co KIC_VERSION ?= $(shell egrep "Version =" pkg/drivers/kic/types.go | cut -d \" -f2) # Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions -ISO_VERSION ?= v1.17.1 +ISO_VERSION ?= v1.17.0 # Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta DEB_VERSION ?= $(subst -,~,$(RAW_VERSION)) DEB_REVISION ?= 0 From a6cde3abbdd5fb24e36ca21a4565da6496616e72 Mon Sep 17 00:00:00 2001 From: Ilya Zuyev Date: Thu, 28 Jan 2021 11:43:07 -0800 Subject: [PATCH 3/3] Update Changelog --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 466511420bbf..1e2b03334ce1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Release Notes +## Version 1.17.1 - 2020-01-28 + +Features: + +* Add new flag --user and to log executed commands [#10106](https://github.com/kubernetes/minikube/pull/10106) +* Unhide --schedule flag for scheduled stop [#10274](https://github.com/kubernetes/minikube/pull/10274) +* Make the ssh driver opt-in and not default [#10269](https://github.com/kubernetes/minikube/pull/10269) + +Bugs: + +* fixing debian and arch concurrent multiarch builds [#9998](https://github.com/kubernetes/minikube/pull/9998) +* configure the crictl yaml file to avoid the warning [#10221](https://github.com/kubernetes/minikube/pull/10221) + +Upgrades: + +* Update BUILD_IMAGE version to 1.16-rc [#10285](https://github.com/kubernetes/minikube/pull/10285) +* The gopsutil cpu implementation changed in v3 [#10270](https://github.com/kubernetes/minikube/pull/10270) + +Thank you to our contributors for this release! + +- Anders F Björklund +- BLasan +- Ilya Zuyev +- Jiefeng He +- Jorropo +- Medya Ghazizadeh +- Niels de Vos +- Priya Wadhwa +- Sharif Elgamal +- Steven Powell +- Thomas Strömberg +- andrzejsydor + + ## Version 1.17.0 - 2020-01-22 Features: