Merge pull request #11048 from ilya-zuyev/ilyaz/release_1.19.0
Release 1.19.0pull/11051/head v1.19.0
commit
15cede53bd
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,5 +1,23 @@
|
|||
# Release Notes
|
||||
|
||||
## Version 1.19.0 - 2021-04-09
|
||||
|
||||
* allow Auto-Pause addon on VMs [#11019](https://github.com/kubernetes/minikube/pull/11019)
|
||||
* Do not allow running darwin/amd64 minikube binary on darwin/arm64 systems [#11024](https://github.com/kubernetes/minikube/pull/11024)
|
||||
* Respect memory being set in the minikube config [#11014](https://github.com/kubernetes/minikube/pull/11014)
|
||||
* new command image ls to list images in a cluster [#11007](https://github.com/kubernetes/minikube/pull/11007)
|
||||
|
||||
Thank you to our contributors for this release!
|
||||
|
||||
- Anders F Björklund
|
||||
- Cookie Wang
|
||||
- Ilya Zuyev
|
||||
- Medya Ghazizadeh
|
||||
- Predrag Rogic
|
||||
- Sharif Elgamal
|
||||
- Steven Powell
|
||||
- 李龙峰
|
||||
|
||||
## Version 1.19.0-beta.0 - 2021-04-05
|
||||
|
||||
Features:
|
||||
|
|
2
Makefile
2
Makefile
|
@ -15,7 +15,7 @@
|
|||
# Bump these on release - and please check ISO_VERSION for correctness.
|
||||
VERSION_MAJOR ?= 1
|
||||
VERSION_MINOR ?= 19
|
||||
VERSION_BUILD ?= 0-beta.0
|
||||
VERSION_BUILD ?= 0
|
||||
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
||||
VERSION ?= v$(RAW_VERSION)
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ func Execute() {
|
|||
}
|
||||
|
||||
if runtime.GOOS == "darwin" && detect.IsAmd64M1Emulation() {
|
||||
exit.Message(reason.WrongBinaryM1, "You are trying to run amd64 binary on M1 system. Please use darwin/arm64 binary instead (Download at {{.url}}.",
|
||||
exit.Message(reason.WrongBinaryM1, "You are trying to run amd64 binary on M1 system. Please use darwin/arm64 binary instead (Download at {{.url}}.)",
|
||||
out.V{"url": notify.DownloadURL(version.GetVersion(), "darwin", "amd64")})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue