From 2a39d7d20cc56d758d950110bd5dddf074439f16 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 3 Jun 2014 13:45:23 -0700 Subject: [PATCH] Bump version to 1.6.3 --- README.md | 4 ++-- manifests/init.pp | 2 +- spec/classes/vagrant_spec.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e9dc850..139558b 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ Install [Vagrant](http://www.vagrantup.com/) on your Mac. ```puppet include vagrant ``` -By default, the module will install Vagrant 1.6.2. You can specify a different version of Vagrant to install (minimum version is 1.4.0 due to download locations). To install Vagrant 1.4.0, you would specify the version as follows: +By default, the module will install Vagrant 1.6.3. You can specify a different version of Vagrant to install (minimum version is 1.4.0 due to download locations). To install Vagrant 1.4.0, you would specify the version as follows: ```puppet class { 'vagrant': - version => '1.6.2' + version => '1.6.3' } ``` diff --git a/manifests/init.pp b/manifests/init.pp index 2c4375b..21dc86c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -4,7 +4,7 @@ # # include vagrant -class vagrant($version = '1.6.2') { +class vagrant($version = '1.6.3') { package { "Vagrant_${version}": ensure => installed, source => "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}.dmg", diff --git a/spec/classes/vagrant_spec.rb b/spec/classes/vagrant_spec.rb index d89345d..602d592 100755 --- a/spec/classes/vagrant_spec.rb +++ b/spec/classes/vagrant_spec.rb @@ -2,7 +2,7 @@ describe 'vagrant' do describe 'when not specifiying a version' do - it { should contain_package('Vagrant_1.6.2').with({ + it { should contain_package('Vagrant_1.6.3').with({ :ensure => 'installed', :provider => 'pkgdmg' })}