Merge pull request #5737 from tstromberg/v1.5.0
Update Makefile and CHANGELOG to v1.5.0pull/5742/head v1.5.0
commit
d1151d9338
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,5 +1,27 @@
|
|||
# Release Notes
|
||||
|
||||
## Version 1.5.0 - 2019-10-25
|
||||
|
||||
* Default to best-available local hypervisor rather than VirtualBox [#5700](https://github.com/kubernetes/minikube/pull/5700)
|
||||
* Update default Kubernetes version to v1.16.2 [#5731](https://github.com/kubernetes/minikube/pull/5731)
|
||||
* Add json output for status [#5611](https://github.com/kubernetes/minikube/pull/5611)
|
||||
* gvisor: Use chroot instead of LD_LIBRARY_PATH [#5735](https://github.com/kubernetes/minikube/pull/5735)
|
||||
* Hide innocuous viper ConfigFileNotFoundError [#5732](https://github.com/kubernetes/minikube/pull/5732)
|
||||
|
||||
Thank you to our contributors!
|
||||
|
||||
- Anders F Björklund
|
||||
- duohedron
|
||||
- Javis Zhou
|
||||
- Josh Woodcock
|
||||
- Kenta Iso
|
||||
- Marek Schwarz
|
||||
- Medya Ghazizadeh
|
||||
- Nanik T
|
||||
- Rob Bruce
|
||||
- Sharif Elgamal
|
||||
- Thomas Strömberg
|
||||
|
||||
## Version 1.5.0-beta.0 - 2019-10-21
|
||||
|
||||
* Fix node InternalIP not matching host-only address [#5427](https://github.com/kubernetes/minikube/pull/5427)
|
||||
|
|
4
Makefile
4
Makefile
|
@ -15,12 +15,12 @@
|
|||
# Bump these on release - and please check ISO_VERSION for correctness.
|
||||
VERSION_MAJOR ?= 1
|
||||
VERSION_MINOR ?= 5
|
||||
VERSION_BUILD ?= 0-beta.0
|
||||
VERSION_BUILD ?= 0
|
||||
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).${VERSION_BUILD}
|
||||
VERSION ?= v$(RAW_VERSION)
|
||||
|
||||
# Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions
|
||||
ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).0-beta.0
|
||||
ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).0
|
||||
# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
|
||||
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
|
||||
RPM_VERSION ?= $(DEB_VERSION)
|
||||
|
|
Loading…
Reference in New Issue