Skip to content
This repository has been archived by the owner on Dec 2, 2020. It is now read-only.

Commit

Permalink
Bump version to 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Colyer committed Jun 3, 2014
1 parent 2d1f8a6 commit 2a39d7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/vagrant_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'
})}
Expand Down

0 comments on commit 2a39d7d

Please sign in to comment.