Skip to content

Commit

Permalink
Release v1.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
legal90 committed Nov 18, 2017
2 parents 46a6bcb + f54ed7d commit c38e1b8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.7.8 (November 18, 2017)
BUG FIXES:
- Fixed warning messages with Vagrant v2.0.1
[[GH-311](https://github.com/Parallels/vagrant-parallels/issues/311)]

## 1.7.7 (October 15, 2017)
BUG FIXES:
- Fixed synced folder mounting on guests with Upstart (Ubuntu 14.*)
Expand Down
6 changes: 3 additions & 3 deletions lib/vagrant-parallels/driver/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -858,14 +858,14 @@ def vm_exists?(uuid)
true
end

private

# Wraps 'execute' and returns the output of given 'prlctl' subcommand.
def execute_prlctl(*command, &block)
execute(@prlctl_path, *command, &block)
end

#Wraps 'execute' and returns the output of given 'prlsrvctl' subcommand.
private

# Wraps 'execute' and returns the output of given 'prlsrvctl' subcommand.
def execute_prlsrvctl(*command, &block)
execute(@prlsrvctl_path, *command, &block)
end
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.7'
VERSION = '1.7.8'
end
end
2 changes: 1 addition & 1 deletion test/acceptance/provider/package_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
new_env2 = new_environment
assert_execute('vagrant', 'box', 'add', 'temp', path.to_s, env: new_env2)
assert_execute('vagrant', 'init', 'temp', env: new_env2)
assert_execute('vagrant', 'up', "--provider=#{provider}", env: new_env)
assert_execute('vagrant', 'up', "--provider=#{provider}", env: new_env2)
assert_execute('vagrant', 'destroy', '--force', env: new_env2)
ensure
if new_env
Expand Down

0 comments on commit c38e1b8

Please sign in to comment.