From 113aee0eef36471774786bffa67b20668b366993 Mon Sep 17 00:00:00 2001 From: tstromberg Date: Wed, 30 Oct 2019 16:08:49 -0700 Subject: [PATCH 1/3] Version bump to v1.5.2 --- CHANGELOG.md | 12 ++++++++++++ Makefile | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1c6565039..f5beb298eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Release Notes +## Version 1.5.2 - 2019-10-30 + +* service: fix --url mode, add integration tests [#5790](https://github.com/kubernetes/minikube/pull/5790) +* Refactor command runner interface, allow stdin writes [#5530](https://github.com/kubernetes/minikube/pull/5530) +* macOS install docs: Minikube is a normal Homebrew formula now [#5750](https://github.com/kubernetes/minikube/pull/5750) + +Thank you to our contributors for this release: + +- Issy Long +- Medya Ghazizadeh +- Thomas Strömberg + ## Version 1.5.1 - 2019-10-29 * Set Docker open-files limit ( 'ulimit -n') to be consistent with other runtimes [#5761](https://github.com/kubernetes/minikube/pull/5761) diff --git a/Makefile b/Makefile index 15e42c3e66..e6ec8a9a93 100755 --- a/Makefile +++ b/Makefile @@ -15,12 +15,12 @@ # Bump these on release - and please check ISO_VERSION for correctness. VERSION_MAJOR ?= 1 VERSION_MINOR ?= 5 -VERSION_BUILD ?= 1 +VERSION_BUILD ?= 2 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).$(VERSION_BUILD) +ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).1 # Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta DEB_VERSION ?= $(subst -,~,$(RAW_VERSION)) RPM_VERSION ?= $(DEB_VERSION) @@ -572,4 +572,4 @@ site: site/themes/docsy/assets/vendor/bootstrap/package.js out/hugo/hugo .PHONY: out/mkcmp out/mkcmp: - GOOS=$(GOOS) GOARCH=$(GOARCH) go build -o $@ cmd/performance/main.go \ No newline at end of file + GOOS=$(GOOS) GOARCH=$(GOARCH) go build -o $@ cmd/performance/main.go From e9b579bc4bbe952fb00cc36407a0f12e7c548efd Mon Sep 17 00:00:00 2001 From: tstromberg Date: Wed, 30 Oct 2019 16:09:32 -0700 Subject: [PATCH 2/3] Minor massaging of release notes --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5beb298eb..197ddce8c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,9 @@ ## Version 1.5.2 - 2019-10-30 -* service: fix --url mode, add integration tests [#5790](https://github.com/kubernetes/minikube/pull/5790) +* service: fix --url mode [#5790](https://github.com/kubernetes/minikube/pull/5790) * Refactor command runner interface, allow stdin writes [#5530](https://github.com/kubernetes/minikube/pull/5530) -* macOS install docs: Minikube is a normal Homebrew formula now [#5750](https://github.com/kubernetes/minikube/pull/5750) +* macOS install docs: minikube is a normal Homebrew formula now [#5750](https://github.com/kubernetes/minikube/pull/5750) Thank you to our contributors for this release: From 97bd438fd74da2b2ac1beddddfb4a9b888227b5e Mon Sep 17 00:00:00 2001 From: tstromberg Date: Thu, 31 Oct 2019 12:05:27 -0700 Subject: [PATCH 3/3] Update Changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 197ddce8c2..4918a573c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,12 @@ * service: fix --url mode [#5790](https://github.com/kubernetes/minikube/pull/5790) * Refactor command runner interface, allow stdin writes [#5530](https://github.com/kubernetes/minikube/pull/5530) * macOS install docs: minikube is a normal Homebrew formula now [#5750](https://github.com/kubernetes/minikube/pull/5750) +* Allow CPU count check to be disabled using --force [#5803](https://github.com/kubernetes/minikube/pull/5803) +* Make network validation friendlier, especially to corp networks [#5802](https://github.com/kubernetes/minikube/pull/5802) Thank you to our contributors for this release: +- Anders F Björklund - Issy Long - Medya Ghazizadeh - Thomas Strömberg