Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
* master:
  Bump version to 1.4.1
  driver: Delegate #execute_prlct method to driver instance
  • Loading branch information
legal90 committed Jun 27, 2015
2 parents d07d02a + f8b7088 commit a74accb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/vagrant-parallels/driver/meta.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def initialize(uuid=nil)
:delete_unused_host_only_networks,
:disable_password_restrictions,
:enable_adapters,
:execute_prlctl,
:forward_ports,
:halt,
:clone_vm,
Expand Down Expand Up @@ -125,7 +126,7 @@ def read_version
#
# But we need exactly the first 3 numbers: "x.x.x"

if execute_prlctl('--version') =~ /prlctl version (\d+\.\d+.\d+)/
if execute(@prlctl_path, '--version') =~ /prlctl version (\d+\.\d+.\d+)/
return $1
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.4.0'
VERSION = '1.4.1'
end
end

0 comments on commit a74accb

Please sign in to comment.