From 3e33bcfc33f7e820896072391c21e79a19a35202 Mon Sep 17 00:00:00 2001 From: Fabio Rapposelli Date: Wed, 21 May 2014 09:34:14 +0200 Subject: [PATCH 1/2] Regression on power off action when using network_bridge, Fixes #67 --- lib/vagrant-vcloud/action/power_off_vapp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-vcloud/action/power_off_vapp.rb b/lib/vagrant-vcloud/action/power_off_vapp.rb index 24bb407..9b83b1b 100644 --- a/lib/vagrant-vcloud/action/power_off_vapp.rb +++ b/lib/vagrant-vcloud/action/power_off_vapp.rb @@ -21,7 +21,7 @@ def call(env) # this is a helper to get vapp_edge_ip into cache for later destroy # of edge gateway rules - vapp_edge_ip = cnx.get_vapp_edge_public_ip(vapp_id) + vapp_edge_ip = cnx.get_vapp_edge_public_ip(vapp_id) if cfg.network_bridge.nil? # Poweroff vApp env[:ui].info('Single VM left in the vApp, Powering off vApp...') From 8da145dfec40c80e9c400f9baf092c4b7cb74fac Mon Sep 17 00:00:00 2001 From: Fabio Rapposelli Date: Wed, 21 May 2014 09:35:43 +0200 Subject: [PATCH 2/2] version bump --- README.md | 6 +++++- lib/vagrant-vcloud/version.rb | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f1a58b6..bbf2ff3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [Vagrant](http://www.vagrantup.com) provider for VMware vCloud Director® ============= -[Version 0.3.2](../../releases/tag/v0.3.2) has been released! +[Version 0.3.3](../../releases/tag/v0.3.3) has been released! ------------- Please note that this software is still Alpha/Beta quality and is not recommended for production usage. @@ -10,6 +10,10 @@ Right now a [Precise32](http://vagrant.tsugliani.fr/precise32.box) is available If you're unsure about what are the correct network settings for your Vagrantfile make sure to check out the [Network Deployment Options](https://github.com/frapposelli/vagrant-vcloud/wiki/Network-Deployment-Options) wiki page. +Features of Version 0.3.3 are: + +- Critical Bug Fix for ```network_bridge``` users [[#67](../../issues/67)] + Features of Version 0.3.2 are: - Added support for ```vagrant share``` command [[#31](../../issues/31)] *experimental* diff --git a/lib/vagrant-vcloud/version.rb b/lib/vagrant-vcloud/version.rb index e51e233..f625bdc 100644 --- a/lib/vagrant-vcloud/version.rb +++ b/lib/vagrant-vcloud/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module VCloud - VERSION = '0.3.2' + VERSION = '0.3.3' end end