diff --git a/CHANGELOG.md b/CHANGELOG.md index f1633c39df..81b9505762 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Minikube Release Notes +## Version 0.13.0 - 12/1/2016 +* Added heapster addon, disabled by default +* Added `minikube addon open` command +* Added Linux Virtualbox Integration tests +* Added Linux KVM Integration tests +* Added Minikube ISO Integration test on OS X +* Multiple fixes to Minikube ISO +* Updated docker-machine, pflag libraries +* Added support for net.PortRange to the configurator +* Fix bug for handling multiple kubeconfigs in env var +* Update dashboard version to 1.5.0 + ## Version 0.12.2 - 10/31/2016 * Fixed dashboard command * Added support for net.IP to the configurator diff --git a/Makefile b/Makefile index 3d9ae81367..af941b68eb 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 12 -VERSION_BUILD ?= 2 +VERSION_MINOR ?= 13 +VERSION_BUILD ?= 0 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)