Add changes for 0.7.0-rc1

Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
This commit is contained in:
Nathan LeClaire 2016-03-24 12:47:06 -07:00
parent 5239e6ed03
commit 751cdcea27
2 changed files with 43 additions and 1 deletions

View File

@ -1,5 +1,47 @@
# Changelog
# 0.7.0-rc1 (2016-3-23)
General
- `DRIVER` environment variable now supported to supply value for `create --driver` flag
- Update to Go 1.6
- SSH client has been refactored
Drivers
- `azure`
- Driver has been completely re-written to use resource templates and a significantly easier-to-use authentication model
- `digitalocean`
- New `--digitalocean-ssh-key-fingerprint` for using existing SSH keys instead of creating new ones
- `virtualbox`
- Fix issue with `bootlocal.sh`
- New `--virtualbox-nictype` flag to set driver for NAT network
- More robust host-only interface collision detection
- Add support for running VirtualBox on a Windows 32 bit host
- Change default DNS passthrough handling
- `amazonec2`
- Specifying multiple security groups to use is now supported
- `exoscale`
- Add support for user-data
- `hyperv`
- Machines can now be created by a non-administrator
- `rackspace`
- New `--rackspace-active-timeout` parameter
- `vmwarefusion`
- Bind mount shared folder directory by default
- `google`
- New `--google-use-internal-ip-only` parameter
Provisioners
- General
- Support for specifying Docker engine port in some cases
- CentOS
- Now defaults to using upstream `get.docker.com` script instead of custom RPMs.
- boot2docker
- More robust eth* interface detection
- Swarm
- Add `--swarm-experimental` parameter to enable experimental Swarm features
# 0.6.0 (2016-02-04)
+ Fix SSH wait before provisioning issue

View File

@ -4,7 +4,7 @@ import "fmt"
var (
// Version should be updated by hand at each release
Version = "0.7.0-dev"
Version = "0.7.0-rc1"
// GitCommit will be overwritten automatically by the build system
GitCommit = "HEAD"