Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/v0.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
frapposelli committed May 21, 2014
2 parents 1d1df8e + 8da145d commit 2e243a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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*
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-vcloud/action/power_off_vapp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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...')
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-vcloud/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module VagrantPlugins
module VCloud
VERSION = '0.3.2'
VERSION = '0.3.3'
end
end

0 comments on commit 2e243a3

Please sign in to comment.