Skip to content

Commit

Permalink
Release v1.7.5
Browse files Browse the repository at this point in the history
* master:
  Bump version to 1.7.5
  Update changelog
  Add "nokogiri" as a runtime dependency
  • Loading branch information
legal90 committed May 27, 2017
2 parents 949bee5 + 11494f1 commit 1bedb51
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-parallels/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module VagrantPlugins
module Parallels
VERSION = '1.7.4'
VERSION = '1.7.5'
end
end
3 changes: 2 additions & 1 deletion vagrant-parallels.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 1bedb51

Please sign in to comment.