Skip to content

Commit 9cc3201

Browse files
author
priyawadhwa
authored
Merge pull request #9405 from priyawadhwa/release
Release v1.14.0-beta.0
2 parents a01db98 + edacefc commit 9cc3201

File tree

2 files changed

+40
-3
lines changed

2 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Release Notes
22

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+
340
## Version 1.13.1 - 2020-09-18
441
* Update Default Kubernetes Version to v1.19.2 [#9265](https://github.com/kubernetes/minikube/pull/9265)
542
* fix mounting for docker driver in windows [#9263](https://github.com/kubernetes/minikube/pull/9263)

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414

1515
# Bump these on release - and please check ISO_VERSION for correctness.
1616
VERSION_MAJOR ?= 1
17-
VERSION_MINOR ?= 13
18-
VERSION_BUILD ?= 1
17+
VERSION_MINOR ?= 14
18+
VERSION_BUILD ?= 0-beta.0
1919
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2020
VERSION ?= v$(RAW_VERSION)
2121

2222
KUBERNETES_VERSION ?= $(shell egrep "DefaultKubernetesVersion =" pkg/minikube/constants/constants.go | cut -d \" -f2)
2323
KIC_VERSION ?= $(shell egrep "Version =" pkg/drivers/kic/types.go | cut -d \" -f2)
2424

2525
# 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
2727
# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
2828
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
2929
RPM_VERSION ?= $(DEB_VERSION)

0 commit comments

Comments
 (0)