From f111fd17ee2bf29d7ac7ea789612959c0e22c3d0 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Tue, 4 Apr 2023 12:50:47 -0700 Subject: [PATCH] Release v1.30.1 --- CHANGELOG.md | 29 ++++++++++++++++++++++++++++- Makefile | 2 +- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9afa4a4599a8..f8fc373d831e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,33 @@ # Release Notes -## Version 1.30.0 - 2023-03-31 +## Version 1.30.1 - 2023-04-04 + +* Docker driver: Fix incorrectly stating `Image was not built for the current minikube` [#16226](https://github.com/kubernetes/minikube/pull/16226) +* Mark VMware driver as unsupported [#16233](https://github.com/kubernetes/minikube/pull/16233) + +For a more detailed changelog, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md). + +Thank you to our contributors for this release! + +- Juan Martin Loyola +- Medya Ghazizadeh +- Steven Powell + +Thank you to our PR reviewers for this release! + +- medyagh (1 comments) + +Thank you to our triage members for this release! + +- afbjorklund (8 comments) +- spowelljr (6 comments) +- kundan2707 (2 comments) +- medyagh (1 comments) +- rafariossaa (1 comments) + +Check out our [contributions leaderboard](https://minikube.sigs.k8s.io/docs/contrib/leaderboard/v1.30.1/) for this release! + +## Version 1.30.0 - 2023-04-03 Features: * Implement experimental QEMU on Windows [#15781](https://github.com/kubernetes/minikube/pull/15781) diff --git a/Makefile b/Makefile index d923ce1c190d..d34ae7a68f1f 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 ?= 30 -VERSION_BUILD ?= 0 +VERSION_BUILD ?= 1 RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) VERSION ?= v$(RAW_VERSION)