From bfb24adfdf54909ea79bb987d5d3d68ace89293c Mon Sep 17 00:00:00 2001 From: Mikhail Zholobov Date: Sat, 20 May 2017 22:37:01 +0200 Subject: [PATCH 1/3] Add "nokogiri" as a runtime dependency --- vagrant-parallels.gemspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vagrant-parallels.gemspec b/vagrant-parallels.gemspec index 81a4dad0..27aa5cf1 100644 --- a/vagrant-parallels.gemspec +++ b/vagrant-parallels.gemspec @@ -16,10 +16,11 @@ Gem::Specification.new do |spec| spec.required_rubygems_version = '>= 1.3.6' spec.rubyforge_project = 'vagrant-parallels' + spec.add_dependency 'nokogiri' + # Constraint rake to properly handle deprecated method usage # from within rspec spec.add_development_dependency 'rake', '~> 11.3.0' - spec.add_development_dependency 'nokogiri' spec.add_development_dependency 'rspec', '~> 2.14.0' spec.files = Dir['lib/**/*', 'locales/**/*', 'README.md', 'CHANGELOG.md', 'LICENSE.txt'] From 9de9130490723cc739d9ccff9648c0078d8b600f Mon Sep 17 00:00:00 2001 From: Mikhail Zholobov Date: Sat, 27 May 2017 17:01:42 +0200 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba15d47b..819fec03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 1.7.5 (May 27, 2017) +BUG FIXES: + - Fixed compatibility with Vagrant v1.9.5+. `nokogiri` gem is defined as + a plugin runtime dependency. + [[GH-297](https://github.com/Parallels/vagrant-parallels/issues/297)], + [[GH-298](https://github.com/Parallels/vagrant-parallels/pull/298)] + + **NB!** To use the plugin with Vagrant v1.9.5 you should (re)install it with + `NOKOGIRI_USE_SYSTEM_LIBRARIES` enabled: + ```bash + $ vagrant plugin uninstall vagrant-parallels + $ NOKOGIRI_USE_SYSTEM_LIBRARIES=true vagrant plugin install vagrant-parallels + ``` + + ## 1.7.4 (April 20, 2017) IMPROVEMENTS: - Make start action (`"vagrant up"`) run provisioners if VM is running. From 11494f115efd4adc1b8eaec08aac9fe8bce7fef9 Mon Sep 17 00:00:00 2001 From: Mikhail Zholobov Date: Sat, 27 May 2017 17:02:17 +0200 Subject: [PATCH 3/3] Bump version to 1.7.5 --- lib/vagrant-parallels/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-parallels/version.rb b/lib/vagrant-parallels/version.rb index 44b52cea..231f10e7 100644 --- a/lib/vagrant-parallels/version.rb +++ b/lib/vagrant-parallels/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Parallels - VERSION = '1.7.4' + VERSION = '1.7.5' end end