Skip to content

Commit

Permalink
Don't use rbvmomi v1.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljb committed Dec 5, 2017
1 parent 62b5395 commit c7b3002
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.13.0
current_version = 1.13.1
tag = true
commit = true

Expand All @@ -8,4 +8,3 @@ commit = true
[bumpversion:file:README.md]
parse = version: (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = version: {major}.{minor}.{patch}

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.13.1 (2017-12-05)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.0)

- Update rbvmomi dependency to avoid v1.11.4; something in
[2725089](https://github.com/vmware/rbvmomi/commit/2725089a08312315c4eb85f13296fc159f50b4d1)
broke cloning VMs on NSIDC's vSphere instance.


## [1.13.0 (2017-11-06)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.0)

- Add support for the commands
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ This provider is built on top of the
* libxml2, libxml2-dev, libxslt, libxslt-dev

## Current Version
**version: 1.13.0**
**version: 1.13.1**

vagrant-vsphere (**version: 1.13.0**) is available from
vagrant-vsphere (**version: 1.13.1**) is available from
[RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)

## Installation
Expand Down
2 changes: 1 addition & 1 deletion lib/vSphere/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module VagrantPlugins
module VSphere
VERSION = '1.13.0'
VERSION = '1.13.1'
end
end
7 changes: 6 additions & 1 deletion vSphere.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ Gem::Specification.new do |s|

# force the use of Nokogiri 1.5.x to prevent conflicts with older versions of zlib
s.add_dependency 'nokogiri', '~>1.5'

# force the use of at least rbvmomi 1.8.2 to work around concurrency errors:
# https://github.com/nsidc/vagrant-vsphere/issues/139
s.add_dependency 'rbvmomi', '>=1.8.2', '<2.0.0'
#
# rbvmomi v1.11.4 broke cloning VMs at NSIDC, see
# https://github.com/vmware/rbvmomi/issues/127
s.add_dependency 'rbvmomi', '>=1.8.2', '<1.11.4'

s.add_dependency 'i18n', '>=0.6.4', '<=0.8.0'

s.add_development_dependency 'rake', '11.1.2' # pinned to accommodate rubocop 0.32.1
Expand Down

0 comments on commit c7b3002

Please sign in to comment.