File tree Expand file tree Collapse file tree 2 files changed +40
-3
lines changed Expand file tree Collapse file tree 2 files changed +40
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
+ ## Version 1.14.0-beta.0 - 2020-10-06
4
+
5
+ ## Features
6
+ * add dedicated network for docker driver [ #9294 ] ( https://github.com/kubernetes/minikube/pull/9294 )
7
+ * Make sure gcp-auth addon can be enabled on startup [ #9318 ] ( https://github.com/kubernetes/minikube/pull/9318 )
8
+
9
+ ## Bug Fixes
10
+ * Fix minikube status bug when cluster is paused [ #9383 ] ( https://github.com/kubernetes/minikube/pull/9383 )
11
+ * don't allow profile name to be less than 2 characters [ #9367 ] ( https://github.com/kubernetes/minikube/pull/9367 )
12
+ * fix: "profile list" shows paused clusters as "Running" [ #8978 ] ( https://github.com/kubernetes/minikube/pull/8978 )
13
+ * Fix error in unittest, as pointed out by warning [ #9345 ] ( https://github.com/kubernetes/minikube/pull/9345 )
14
+
15
+ ## Updates
16
+ * update kicbase image to ubuntu-based [ #9353 ] ( https://github.com/kubernetes/minikube/pull/9353 )
17
+
18
+ Thank you to our contributors for this release!
19
+ - Anders F Björklund
20
+ - Bob Killen
21
+ - Daniel Weibel
22
+ - Dominik Braun
23
+ - Ilya Zuyev
24
+ - JJ Asghar
25
+ - Jituri, Pranav
26
+ - Medya Ghazizadeh
27
+ - Michael Ryan Dempsey
28
+ - Predrag Rogic
29
+ - Priya Wadhwa
30
+ - Sharif Elgamal
31
+ - Tacio Costa
32
+ - Thomas Strömberg
33
+ - Till Hoffmann
34
+ - loftkun
35
+ - programistka
36
+ - zhanwang
37
+
38
+
39
+
3
40
## Version 1.13.1 - 2020-09-18
4
41
* Update Default Kubernetes Version to v1.19.2 [ #9265 ] ( https://github.com/kubernetes/minikube/pull/9265 )
5
42
* fix mounting for docker driver in windows [ #9263 ] ( https://github.com/kubernetes/minikube/pull/9263 )
Original file line number Diff line number Diff line change 14
14
15
15
# Bump these on release - and please check ISO_VERSION for correctness.
16
16
VERSION_MAJOR ?= 1
17
- VERSION_MINOR ?= 13
18
- VERSION_BUILD ?= 1
17
+ VERSION_MINOR ?= 14
18
+ VERSION_BUILD ?= 0-beta.0
19
19
RAW_VERSION =$(VERSION_MAJOR ) .$(VERSION_MINOR ) .$(VERSION_BUILD )
20
20
VERSION ?= v$(RAW_VERSION )
21
21
22
22
KUBERNETES_VERSION ?= $(shell egrep "DefaultKubernetesVersion =" pkg/minikube/constants/constants.go | cut -d \" -f2)
23
23
KIC_VERSION ?= $(shell egrep "Version =" pkg/drivers/kic/types.go | cut -d \" -f2)
24
24
25
25
# Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions
26
- ISO_VERSION ?= v $( VERSION_MAJOR ) . $( VERSION_MINOR ) .1
26
+ ISO_VERSION ?= v1.13 .1
27
27
# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
28
28
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION ) )
29
29
RPM_VERSION ?= $(DEB_VERSION )
You can’t perform that action at this time.
0 commit comments