Kitchen-vagrant 1.3.1 released!

Ohai,

We’ve got a small but lovely update specifically for Hyper-V users so that they too can get in on the benefits of Differencing Disks. Given this is pretty darn similar to Vagrant’s existing linked_clone option for other hypervisors we still leverage kitchen’s linked_clone config key and translate this for the user.

Example
---
platforms:
  - name: ubuntu-16.04
    driver:
      linked_clone: true

Would translate to the following when Hyper-V is the provider:

Vagrant.configure("2") do |config|
  # ...

  c.vm.provider :hyperv do |p|
    p.differencing_disk = true
  end
end

Many thanks to cocazoulou for this feature!