diff --git a/CHANGELOG.md b/CHANGELOG.md index ac02854164b2fcf0d2f5a6792a2490ae52884923..56eeddaac56f5e023890182e0f252a708847dbb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Minikube Release Notes +## Version 0.19.1 - 5/30/2017 +* Fixed issue where using TPRs could cause localkube to crash +* Added mount daemon that can be started using `minikube start --mount --mount-string="/path/to/mount"`. Cleanup of mount handled by `minikube delete` +* Added minikube "none" driver which does not require a VM but instead launches k8s components on the host. This allows minikube to be used in cloud environments that don't support nested virtualizations. This can be launched by running `sudo minikube start --vm-driver=none --use-vendored-driver` +* Update kube-dns to 1.14.2 +* Update kubernetes to 1.6.4 +* Added `minikube ssh-key` command which retrieves the ssh key information for the minikubeVM +* Fixed vbox interface issue with minikube mount + ## Version 0.19.0 - 5/3/2017 * Updated nginx ingress to v0.9-beta.4 * Updated kube-dns to 1.14.1 diff --git a/Makefile b/Makefile index 7ffd809b8b3c93365b0f52f7cca87b8185022c7d..9dd6112b99f3bd432bcf6d826d736a833d437e27 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # Bump these on release VERSION_MAJOR ?= 0 VERSION_MINOR ?= 19 -VERSION_BUILD ?= 0 +VERSION_BUILD ?= 1 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) DEB_VERSION ?= $(VERSION_MAJOR).$(VERSION_MINOR)-$(VERSION_BUILD) INSTALL_SIZE ?= $(shell du out/minikube-windows-amd64.exe | cut -f1)