Skip to content

Commit

Permalink
Merge pull request #292 from nsidc/nokogiri
Browse files Browse the repository at this point in the history
Nokogiri
  • Loading branch information
mlaxer88 authored Jan 6, 2021
2 parents 8706cf0 + f217850 commit 02dff78
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.13.4
current_version = 1.13.5
tag = true
commit = true

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.13.5 (2021-01-05)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.5)
- Pin nokogiri to 1.10.10. This fixes an issue where vagrant-vsphere failed to install due to
nokogiri requiring Ruby >=2.5. This is a workaround until the vagrant-nsidc plugin is updated
to work with newer versions of vagrant that are bundled with newer versions of Ruby

## [1.13.4 (2020-03-31)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.13.4)

- Allow newer versions of i18n.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ group :development do
# We depend on Vagrant for development, but we don't add it as a
# gem dependency because we expect to be installed within the
# Vagrant environment itself using `vagrant plugin`.
gem 'vagrant', github: 'mitchellh/vagrant'
gem 'vagrant', github: 'mitchellh/vagrant', ref: 'v2.2.6'
end

group :plugins do
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.4**
**version: 1.13.5**

vagrant-vsphere (**version: 1.13.4**) is available from
vagrant-vsphere (**version: 1.13.5**) 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.4'
VERSION = '1.13.5'
end
end
4 changes: 2 additions & 2 deletions vSphere.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Gem::Specification.new do |s|
s.summary = 'VMWare vSphere provider'
s.description = 'Enables Vagrant to manage machines with VMWare vSphere.'

# force the use of Nokogiri 1.5.x to prevent conflicts with older versions of zlib
s.add_dependency 'nokogiri', '~>1.5'
# pin nokogiri to 1.10.10 to get around 1.11.0 requiring ruby >=2.5
s.add_dependency 'nokogiri', '1.10.10'

s.add_dependency 'rbvmomi', '>=1.11.5', '<2.0.0'

Expand Down

0 comments on commit 02dff78

Please sign in to comment.