This commit is contained in:
Fabio Rehm 2013-09-11 20:47:24 -03:00
parent b0180b16d9
commit 11defb0b29
4 changed files with 8 additions and 3 deletions

View file

@ -1,4 +1,4 @@
## [0.3.3](https://github.com/fgrehm/vagrant-cachier/compare/v0.3.2...master) (unreleased) ## [0.3.3](https://github.com/fgrehm/vagrant-cachier/compare/v0.3.2...v0.3.3) (Sep 11, 2013)
BUG FIXES: BUG FIXES:

View file

@ -31,7 +31,7 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
vagrant-cachier (0.3.3.dev) vagrant-cachier (0.3.3)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/

View file

@ -58,6 +58,11 @@ Vagrant.configure("2") do |config|
debian_like_configs.call ubuntu debian_like_configs.call ubuntu
end end
config.vm.define :lucid do |lucid|
lucid.vm.box = "lucid64"
debian_like_configs.call lucid
end
config.vm.define :debian do |debian| config.vm.define :debian do |debian|
debian.vm.box = "squeeze64" debian.vm.box = "squeeze64"
debian.vm.box_url = 'http://f.willianfernandes.com.br/vagrant-boxes/DebianSqueeze64.box' debian.vm.box_url = 'http://f.willianfernandes.com.br/vagrant-boxes/DebianSqueeze64.box'

View file

@ -1,5 +1,5 @@
module VagrantPlugins module VagrantPlugins
module Cachier module Cachier
VERSION = "0.3.3.dev" VERSION = "0.3.3"
end end
end end