v0.2.2
[x] Emit event for Upstart configs when shared folders are mounted [GH-88]
[x] i18n-tasks to 0.3.9 [GH-86]
[x] README.md has been rewritten
[x] Fixed network adapter configuration issue if using provider-specific config [hashicorp/vagrant#2854]
[x] Fixed error "dhclient is already running" [GH-83]
[x] Fixed error "VM Boot Timeout" [GH-58]
[x] Removed Vagrantfile from boxes [GH-79]
[x] Added interrupt handling in import/export actions [GH-36]
[x] Added possibility to skip guest tools check
config.vm.provider "parallels" do |v|
v.check_guest_tools = false
end
[x] Added 'cpus' and 'memory' customization shortcuts
config.vm.provider "parallels" do |v|
v.memory = "512"
v.cpus = 1
end