From ad96fbb16c42a5c72fd74f53a270ec989d04ad1a Mon Sep 17 00:00:00 2001 From: Hendrik Volkmer Date: Wed, 25 Sep 2013 11:28:05 +0200 Subject: [PATCH] Release version 0.3.0 Also adds Authors file and change log. --- Authors.txt | 11 ++++++ CHANGELOG.md | 51 ++++++++++++++++++++++++- lib/vagrant-openstack-plugin/version.rb | 2 +- 3 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 Authors.txt diff --git a/Authors.txt b/Authors.txt new file mode 100644 index 0000000..0a9857a --- /dev/null +++ b/Authors.txt @@ -0,0 +1,11 @@ +Brian Miller +Corey Stubbs +Hendrik Volkmer +Jasper Capel +Joe Topjian +Jon Burgess +Mathieu Mitchell +Mitchell Hashimoto +Stephan Renatus +Thomas Kadauke +Xavier Antoviaque diff --git a/CHANGELOG.md b/CHANGELOG.md index 141b2be..a2a1868 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,50 @@ -# 0.1.0 (March 14, 2013) +# Changelog for vagrant-openstack-plugin -* Initial release. +## 0.3.0 (September 25, 2013) + +- Adds support to determine IP address to use +- Region Support +- Enabled controlling multiple VMs in parallel +- Honor disabling of synced folders +- Adds `availability_zone` option to specify instance zone +- Added --delete to rsync command +- Call SetHostname action from Vagrant core in up phase +- Handled not having the box and providing it via a box_url. +- Allowed vagrant ssh -c 'command' +- Adds tenant to network request +- Improved documentation + +## 0.2.2 (May 30, 2013) + +- Also ignore HOSTUNREACH errors when first trying to connect to newly created VM + +## 0.2.1 (May 29, 2013) + +- Fix passing user data to server on create +- Floating IP Capability +- Added ability to configure scheduler hints +- Update doc (network config in fact has higher precedence than address_id) +- 'address_id' now defaults to 'public', to reduce number of cases in read_ssh_info +- Introduced 'address_id' config, which has a higher order of precedence than 'network' + +## 0.2.0 (May 2, 2013) + +- Added docs +- Removed metadata validation and bumped version +- Tenant and security groups are now configurable + +## 0.1.3 (April 26, 2013) + +- Added the ability to pass metadata keypairs to instances +- Added support for nics configurations to allow for selection of a specific network on creation + +## 0.1.2 (April 26, 2013) + +- Added the option of passing user data to VMs +- Enabled `vagrant provision` in this provider +- Made finding IP address more stable +- Doc improvements and minor fixes + +## 0.1.0 (March 14, 2013) + +- Initial release diff --git a/lib/vagrant-openstack-plugin/version.rb b/lib/vagrant-openstack-plugin/version.rb index d47ce9b..166865a 100644 --- a/lib/vagrant-openstack-plugin/version.rb +++ b/lib/vagrant-openstack-plugin/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module OpenStack - VERSION = "0.2.2" + VERSION = "0.3.0" end end