File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## Version 1.19.0 - 2021-04-09
4+
5+ * allow Auto-Pause addon on VMs [ #11019 ] ( https://github.com/kubernetes/minikube/pull/11019 )
6+ * Do not allow running darwin/amd64 minikube binary on darwin/arm64 systems [ #11024 ] ( https://github.com/kubernetes/minikube/pull/11024 )
7+ * Respect memory being set in the minikube config [ #11014 ] ( https://github.com/kubernetes/minikube/pull/11014 )
8+ * new command image ls to list images in a cluster [ #11007 ] ( https://github.com/kubernetes/minikube/pull/11007 )
9+
10+ Thank you to our contributors for this release!
11+
12+ - Anders F Björklund
13+ - Cookie Wang
14+ - Ilya Zuyev
15+ - Medya Ghazizadeh
16+ - Predrag Rogic
17+ - Sharif Elgamal
18+ - Steven Powell
19+ - 李龙峰
20+
321## Version 1.19.0-beta.0 - 2021-04-05
422
523Features:
Original file line number Diff line number Diff line change 1515# Bump these on release - and please check ISO_VERSION for correctness.
1616VERSION_MAJOR ?= 1
1717VERSION_MINOR ?= 19
18- VERSION_BUILD ?= 0-beta.0
18+ VERSION_BUILD ?= 0
1919RAW_VERSION =$(VERSION_MAJOR ) .$(VERSION_MINOR ) .$(VERSION_BUILD )
2020VERSION ?= v$(RAW_VERSION )
2121
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ func Execute() {
9797 }
9898
9999 if runtime .GOOS == "darwin" && detect .IsAmd64M1Emulation () {
100- exit .Message (reason .WrongBinaryM1 , "You are trying to run amd64 binary on M1 system. Please use darwin/arm64 binary instead (Download at {{.url}}." ,
100+ exit .Message (reason .WrongBinaryM1 , "You are trying to run amd64 binary on M1 system. Please use darwin/arm64 binary instead (Download at {{.url}}.) " ,
101101 out.V {"url" : notify .DownloadURL (version .GetVersion (), "darwin" , "amd64" )})
102102 }
103103
You can’t perform that action at this time.
0 commit comments