From da85657685f01f9b752f1c206bdb3be07baea762 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Thu, 6 May 2021 11:28:50 -0700 Subject: [PATCH] Update Makefile for v1.20.0 release --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b018f77212..9f6716e6e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Release Notes +## Version 1.20.0 - 2021-05-06 + +Feature: +* Add --file flag to 'minikube logs' to automatically put logs into a file. [#11240](https://github.com/kubernetes/minikube/pull/11240) + +Minor Improvements: +* Batch logs output to speedup `minikube logs` command [#11274](https://github.com/kubernetes/minikube/pull/11274) +* warn about performance for certain versions of kubernetes [#11217](https://github.com/kubernetes/minikube/pull/11217) + +Version Upgrades: +* Update olm addon to v0.17.0 [#10947](https://github.com/kubernetes/minikube/pull/10947) +* Update newest supported Kubernetes version to v1.22.0-alpha.1 [#11287](https://github.com/kubernetes/minikube/pull/11287) + +For a more detailed changelog, including changes occuring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md). + +Thank you to our contributors for this release! + +- Anders F Björklund +- Andriy Dzikh +- Daehyeok Mun +- Ilya Zuyev +- Medya Ghazizadeh +- Predrag Rogic +- Sharif Elgamal +- Steven Powell +- Tomas Kral +- Yanshu +- zhangshj + + ## Version 1.20.0-beta.0 - 2021-04-30 Features: diff --git a/Makefile b/Makefile index 6a32d2025d..c4bfe0497b 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 ?= 20 -VERSION_BUILD ?= 0-beta.0 +VERSION_BUILD ?= 0 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION ?= v$(RAW_VERSION)