vagrantup 0.7.7 → 0.7.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f7172b5b1d67c687edf54b177861b2010013192
4
- data.tar.gz: f21101af0b1582e3090203caa9722fe34319fe16
3
+ metadata.gz: 57c60be7239fb2bc9f67e6169a321802d5d76483
4
+ data.tar.gz: 7cdd442dbf76772c07f7db81c92344eb3549de5e
5
5
  SHA512:
6
- metadata.gz: d4295e7a808caf7cb929cfb62e23415f28c12ebe532b3daad377b1f5b07def21d7a1d65a731db5b1369450923c5f90c5a0727802ce554a219581b6c9bbbf6125
7
- data.tar.gz: d46fb3e5a5e6d90513779d2ab2751016189d5df3b24819f6ffc619e64ac3320fd63cf132fb964bfa787f3bd769339730dc0aa297780e97d3fd8d2cd0749527b3
6
+ metadata.gz: 5e557efdb6730b4c1b217f6c84040f4a275cb15466abf529347f3ec6eb993ad791389175fc8d23a9b213f4f9b5bbd26a7877c7154a8867be35c97b06b6626db4
7
+ data.tar.gz: c0741f24d90bd2178c3dcd922f963bd4dc2ca7959556326cd7341d3afd5b6fdab804e205ca4588a9a793c494793d6205d2a3181f4c48fcd58d8db6637ca50813
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.7.8 (July 19, 2011)
2
+
3
+ - Make sure VirtualBox version check verifies that it is 4.0.x.
4
+
1
5
  ## 0.7.7 (July 12, 2011)
2
6
 
3
7
  - Fix crashing bug with Psych and Ruby 1.9.2. [GH-411]
@@ -36,7 +36,7 @@ module Vagrant
36
36
  def check_virtualbox!
37
37
  version = VirtualBox.version
38
38
  raise Errors::VirtualBoxNotDetected if version.nil?
39
- raise Errors::VirtualBoxInvalidVersion, :version => version.to_s if version.to_f < 4.0
39
+ raise Errors::VirtualBoxInvalidVersion, :version => version.to_s if version.to_f < 4.0 || version.to_f >= 4.1
40
40
  rescue Errors::VirtualBoxNotDetected
41
41
  # On 64-bit Windows, show a special error. This error is a subclass
42
42
  # of VirtualBoxNotDetected, so libraries which use Vagrant can just
@@ -2,5 +2,5 @@ module Vagrant
2
2
  # This will always be up to date with the current version of Vagrant,
3
3
  # since it is used to generate the gemspec and is also the source of
4
4
  # the version for `vagrant -v`
5
- VERSION = "0.7.7"
5
+ VERSION = "0.7.8"
6
6
  end
@@ -138,6 +138,9 @@ en:
138
138
  Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
139
139
  If VirtualBox is installed, it may be an incorrect version. Vagrant currently
140
140
  requires VirtualBox 4.0.x. Please install the proper version to continue.
141
+
142
+ If you have an older or newer version of VirtualBox, please make sure you're
143
+ using the proper version of Vagrant. Ask the mailing list if you have questions.
141
144
  virtualbox_not_detected_win64: |-
142
145
  Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed
143
146
  with version 4.0.0 or higher.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrantup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7
4
+ version: 0.7.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto