Skip to content

Commit 15cede5

Browse files
authored
Merge pull request #11048 from ilya-zuyev/ilyaz/release_1.19.0
Release 1.19.0
2 parents a9cf5e9 + c0fa069 commit 15cede5

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
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

523
Features:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Bump these on release - and please check ISO_VERSION for correctness.
1616
VERSION_MAJOR ?= 1
1717
VERSION_MINOR ?= 19
18-
VERSION_BUILD ?= 0-beta.0
18+
VERSION_BUILD ?= 0
1919
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2020
VERSION ?= v$(RAW_VERSION)
2121

cmd/minikube/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)