Skip to content

Commit

Permalink
Merge pull request kubernetes#272 from dlorenc/release
Browse files Browse the repository at this point in the history
Bump to v0.5.0, add release notes and increment the releases.json.
  • Loading branch information
dlorenc authored Jul 6, 2016
2 parents 10364bc + b68c957 commit 0a71dd2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Minikube Release Notes

## Version 0.5.0 - 7/6/2016
* Updated Kubernetes components to v1.3.0
* Added experimental support for KVM and XHyve based drivers. See the [drivers documentation](DRIVERS.md) for usage.
* Fixed a bug causing cluster state to be deleted after a `minikube stop`.
* Fixed a bug causing the minikube logs to fill up rapidly.
* Added a new `minikube service` command, to open a browser to the URL for a given service.
* Added a `--cpus` flag to `minikube start`.

## Version 0.4.0 - 6/27/2016
* Updated Kubernetes components to v1.3.0-beta.1
* Updated the Kubernetes Dashboard to v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
export GO15VENDOREXPERIMENT=1

# Bump this on release
VERSION ?= v0.4.0
VERSION ?= v0.5.0

GOOS ?= $(shell go env GOOS)
GOARCH ?= $(shell go env GOARCH)
Expand Down
3 changes: 3 additions & 0 deletions deploy/minikube/releases.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[
{
"name": "v0.5.0"
},
{
"name": "v0.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion docs/minikube_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ minikube start

```
--cpus=1: Number of CPUs allocated to the minikube VM
--iso-url="https://storage.googleapis.com/minikube/minikube-0.4.iso": Location of the minikube iso
--iso-url="https://storage.googleapis.com/minikube/minikube-0.5.iso": Location of the minikube iso
--memory=1024: Amount of RAM allocated to the minikube VM
--vm-driver="virtualbox": VM driver is one of: [virtualbox vmwarefusion kvm xhyve]
```
Expand Down
2 changes: 1 addition & 1 deletion pkg/minikube/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var SupportedVMDrivers = [...]string{
}

const (
DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.4.iso"
DefaultIsoUrl = "https://storage.googleapis.com/minikube/minikube-0.5.iso"
DefaultMemory = 1024
DefaultCPUS = 1
DefaultVMDriver = "virtualbox"
Expand Down

0 comments on commit 0a71dd2

Please sign in to comment.