From 5a8fd2fd03f0c4ed29a6546ede5cd65b0314f5d1 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Thu, 4 Nov 2021 15:23:52 -0700 Subject: [PATCH] Update Makefile for v1.24.0 release --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9d092ef438e..5f6aa6653ae2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # Release Notes +## Version 1.24.0 - 2021-11-04 + +Features: +* Add --no-kubernetes flag to start minikube without kubernetes [#12848](https://github.com/kubernetes/minikube/pull/12848) +* `minikube addons list` shows addons if cluster does not exist [#12837](https://github.com/kubernetes/minikube/pull/12837) + +Bug fixes: +* virtualbox: change default `host-only-cidr` [#12811](https://github.com/kubernetes/minikube/pull/12811) +* fix zsh completion [#12841](https://github.com/kubernetes/minikube/pull/12841) +* Fix starting on Windows with VMware driver on non `C:` drive [#12819](https://github.com/kubernetes/minikube/pull/12819) + +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! + +- Akira Yoshiyama +- Keyhoh +- Medya Ghazizadeh +- Nicolas Busseneau +- Sharif Elgamal +- Steven Powell +- Toshiaki Inukai + +Thank you to our PR reviewers for this release! + +- spowelljr (11 comments) +- sharifelgamal (10 comments) +- afbjorklund (6 comments) +- atoato88 (5 comments) +- medyagh (3 comments) +- yosshy (1 comments) + +Thank you to our triage members for this release! + +- sharifelgamal (13 comments) +- afbjorklund (9 comments) +- spowelljr (6 comments) +- medyagh (3 comments) +- Sarathgiggso (2 comments) + ## Version 1.24.0-beta.0 - 2021-10-28 Features: diff --git a/Makefile b/Makefile index b3482f796d88..4e49066be368 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 ?= 24 -VERSION_BUILD ?= 0-beta.0 +VERSION_BUILD ?= 0 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION ?= v$(RAW_VERSION)