vagrant-vsphere 1.8.0 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae7d9019775f8f961ef05883df03843773b9ebf3
4
- data.tar.gz: 6c7a162ca9a69f024a2f4dc35ebb7192c8792355
3
+ metadata.gz: 44eaadb2635893728366e8b5feb84895f30ebb9f
4
+ data.tar.gz: d543a5d6bd671ffe7ee51502d23df6c79e07285c
5
5
  SHA512:
6
- metadata.gz: 267fef6b672212a0e5bfde2660bc32354f0b4f963a7da8788a4597eb4cd107f1406a3ab4af2fc25922b077cd3aad5c91d70954ba4b226184b6c67fd215a6f661
7
- data.tar.gz: 187a44c00e3123348f26bd3aa60c7f9f10d82c037f19e97f6ea8fe6a0ec3699c9db64f92d2f5b603355abb5c648edb9d2f1f972b06bbd5139b5e6c0b1b2e1c84
6
+ metadata.gz: 1de3807f0c71b4572e15f45fc95480de464eeb6838f4b565a97c4ec9209e2dd21ef918b4783753c06fe77e1bd1eb9f0a351eaf21da7c8978a644df2300f29006
7
+ data.tar.gz: 94ec4d567b84a2ab4cd7df12c06f3fbd7d470dac1c3f218b15e1063c013dac79344f5f954f00b9f4f6a8fa0385d5d187fc0109ebf5bf9776c1a57d468ec19bf4
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.8.0
2
+ current_version = 1.8.1
3
3
  tag = true
4
4
  commit = true
5
5
 
@@ -8,3 +8,4 @@ commit = true
8
8
  [bumpversion:file:README.md]
9
9
  parse = version: (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
10
10
  serialize = version: {major}.{minor}.{patch}
11
+
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.8.1 (2016-04-27)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.8.1)
2
+
3
+ - Fix error for initial VLAN/virtual switch support
4
+ ([adampointer:master](https://github.com/nsidc/vagrant-vsphere/pull/190)).
5
+
6
+
1
7
  ## [1.8.0 (2016-04-21)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.8.0)
2
8
 
3
9
  - Allow VLANs on virtual switches to work correctly
data/README.md CHANGED
@@ -19,9 +19,9 @@ This provider is built on top of the
19
19
  * libxml2, libxml2-dev, libxslt, libxslt-dev
20
20
 
21
21
  ## Current Version
22
- **version: 1.8.0**
22
+ **version: 1.8.1**
23
23
 
24
- vagrant-vsphere (**version: 1.8.0**) is available from
24
+ vagrant-vsphere (**version: 1.8.1**) is available from
25
25
  [RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
26
26
 
27
27
  ## Installation
@@ -212,7 +212,7 @@ module VagrantPlugins
212
212
  modify_network_card(template, spec) do |card|
213
213
  begin
214
214
  switch_port = RbVmomi::VIM.DistributedVirtualSwitchPortConnection(switchUuid: network.config.distributedVirtualSwitch.uuid, portgroupKey: network.key)
215
- card.backing = RbVmomi::VIM::VirtualEthernetCardNetworkBackingInfo(port: switch_port)
215
+ card.backing = RbVmomi::VIM::VirtualEthernetCardDistributedVirtualPortBackingInfo(port: switch_port)
216
216
  rescue
217
217
  # not connected to a distibuted switch?
218
218
  card.backing = RbVmomi::VIM::VirtualEthernetCardNetworkBackingInfo(network: network, deviceName: network.name)
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VSphere
3
- VERSION = '1.8.0'
3
+ VERSION = '1.8.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vsphere
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Grauch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-21 00:00:00.000000000 Z
11
+ date: 2016-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri