diff --git a/Rakefile b/Rakefile index ae63bf745..b19b58acd 100644 --- a/Rakefile +++ b/Rakefile @@ -10,7 +10,7 @@ begin gemspec.homepage = "http://github.com/mitchellh/vagrant" gemspec.authors = ["Mitchell Hashimoto", "John Bender"] - gemspec.add_dependency('virtualbox', '~> 0.6.2') + gemspec.add_dependency('virtualbox', '~> 0.7.0') gemspec.add_dependency('net-ssh', '>= 2.0.19') gemspec.add_dependency('net-scp', '>= 1.0.2') gemspec.add_dependency('json', '>= 1.2.0') diff --git a/VERSION b/VERSION index f5311e9d1..60a2d3e96 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.5.dev \ No newline at end of file +0.4.0 \ No newline at end of file diff --git a/vagrant.gemspec b/vagrant.gemspec index aaea08b74..e81eceb01 100644 --- a/vagrant.gemspec +++ b/vagrant.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{vagrant} - s.version = "0.3.5.dev" + s.version = "0.4.0" - s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Mitchell Hashimoto", "John Bender"] - s.date = %q{2010-06-05} + s.date = %q{2010-06-10} s.default_executable = %q{vagrant} s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.} s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"] @@ -189,75 +189,75 @@ Gem::Specification.new do |s| s.rubygems_version = %q{1.3.6} s.summary = %q{Vagrant is a tool for building and distributing virtualized development environments.} s.test_files = [ - "test/vagrant/util_test.rb", - "test/vagrant/box_test.rb", - "test/vagrant/resource_logger_test.rb", - "test/vagrant/ssh_test.rb", - "test/vagrant/environment_test.rb", - "test/vagrant/provisioners/base_test.rb", - "test/vagrant/provisioners/chef_solo_test.rb", - "test/vagrant/provisioners/chef_server_test.rb", - "test/vagrant/provisioners/chef_test.rb", - "test/vagrant/commands/ssh_test.rb", - "test/vagrant/commands/destroy_test.rb", - "test/vagrant/commands/resume_test.rb", - "test/vagrant/commands/halt_test.rb", - "test/vagrant/commands/provision_test.rb", - "test/vagrant/commands/status_test.rb", - "test/vagrant/commands/base_test.rb", - "test/vagrant/commands/up_test.rb", - "test/vagrant/commands/reload_test.rb", - "test/vagrant/commands/package_test.rb", - "test/vagrant/commands/init_test.rb", - "test/vagrant/commands/ssh_config_test.rb", - "test/vagrant/commands/box/list_test.rb", - "test/vagrant/commands/box/add_test.rb", - "test/vagrant/commands/box/remove_test.rb", - "test/vagrant/commands/suspend_test.rb", - "test/vagrant/config_test.rb", + "test/test_helper.rb", "test/vagrant/vm_test.rb", - "test/vagrant/downloaders/base_test.rb", - "test/vagrant/downloaders/http_test.rb", - "test/vagrant/downloaders/file_test.rb", "test/vagrant/command_test.rb", - "test/vagrant/active_list_test.rb", + "test/vagrant/environment_test.rb", + "test/vagrant/util_test.rb", + "test/vagrant/box_test.rb", "test/vagrant/busy_test.rb", + "test/vagrant/provisioners/base_test.rb", + "test/vagrant/provisioners/chef_test.rb", + "test/vagrant/provisioners/chef_server_test.rb", + "test/vagrant/provisioners/chef_solo_test.rb", "test/vagrant/systems/linux_test.rb", - "test/vagrant/ssh_session_test.rb", - "test/vagrant/util/output_helper_test.rb", - "test/vagrant/util/plain_logger_test.rb", - "test/vagrant/util/stacked_proc_runner_test.rb", - "test/vagrant/util/error_helper_test.rb", - "test/vagrant/util/platform_test.rb", - "test/vagrant/util/template_renderer_test.rb", - "test/vagrant/util/translator_test.rb", - "test/vagrant/actions/vm/start_test.rb", - "test/vagrant/actions/vm/destroy_test.rb", - "test/vagrant/actions/vm/customize_test.rb", - "test/vagrant/actions/vm/resume_test.rb", - "test/vagrant/actions/vm/halt_test.rb", - "test/vagrant/actions/vm/provision_test.rb", - "test/vagrant/actions/vm/import_test.rb", - "test/vagrant/actions/vm/network_test.rb", - "test/vagrant/actions/vm/up_test.rb", - "test/vagrant/actions/vm/boot_test.rb", - "test/vagrant/actions/vm/reload_test.rb", - "test/vagrant/actions/vm/shared_folders_test.rb", - "test/vagrant/actions/vm/package_test.rb", - "test/vagrant/actions/vm/move_hard_drive_test.rb", - "test/vagrant/actions/vm/forward_ports_test.rb", - "test/vagrant/actions/vm/suspend_test.rb", - "test/vagrant/actions/vm/down_test.rb", - "test/vagrant/actions/vm/export_test.rb", + "test/vagrant/config_test.rb", "test/vagrant/actions/base_test.rb", "test/vagrant/actions/runner_test.rb", - "test/vagrant/actions/collection_test.rb", - "test/vagrant/actions/box/destroy_test.rb", - "test/vagrant/actions/box/download_test.rb", "test/vagrant/actions/box/verify_test.rb", - "test/vagrant/actions/box/unpackage_test.rb", + "test/vagrant/actions/box/destroy_test.rb", "test/vagrant/actions/box/add_test.rb", - "test/test_helper.rb" + "test/vagrant/actions/box/unpackage_test.rb", + "test/vagrant/actions/box/download_test.rb", + "test/vagrant/actions/collection_test.rb", + "test/vagrant/actions/vm/reload_test.rb", + "test/vagrant/actions/vm/suspend_test.rb", + "test/vagrant/actions/vm/boot_test.rb", + "test/vagrant/actions/vm/package_test.rb", + "test/vagrant/actions/vm/down_test.rb", + "test/vagrant/actions/vm/shared_folders_test.rb", + "test/vagrant/actions/vm/destroy_test.rb", + "test/vagrant/actions/vm/halt_test.rb", + "test/vagrant/actions/vm/import_test.rb", + "test/vagrant/actions/vm/customize_test.rb", + "test/vagrant/actions/vm/start_test.rb", + "test/vagrant/actions/vm/network_test.rb", + "test/vagrant/actions/vm/move_hard_drive_test.rb", + "test/vagrant/actions/vm/up_test.rb", + "test/vagrant/actions/vm/export_test.rb", + "test/vagrant/actions/vm/provision_test.rb", + "test/vagrant/actions/vm/resume_test.rb", + "test/vagrant/actions/vm/forward_ports_test.rb", + "test/vagrant/active_list_test.rb", + "test/vagrant/commands/base_test.rb", + "test/vagrant/commands/reload_test.rb", + "test/vagrant/commands/ssh_config_test.rb", + "test/vagrant/commands/suspend_test.rb", + "test/vagrant/commands/package_test.rb", + "test/vagrant/commands/status_test.rb", + "test/vagrant/commands/init_test.rb", + "test/vagrant/commands/destroy_test.rb", + "test/vagrant/commands/halt_test.rb", + "test/vagrant/commands/box/remove_test.rb", + "test/vagrant/commands/box/add_test.rb", + "test/vagrant/commands/box/list_test.rb", + "test/vagrant/commands/up_test.rb", + "test/vagrant/commands/provision_test.rb", + "test/vagrant/commands/resume_test.rb", + "test/vagrant/commands/ssh_test.rb", + "test/vagrant/resource_logger_test.rb", + "test/vagrant/downloaders/base_test.rb", + "test/vagrant/downloaders/file_test.rb", + "test/vagrant/downloaders/http_test.rb", + "test/vagrant/util/stacked_proc_runner_test.rb", + "test/vagrant/util/output_helper_test.rb", + "test/vagrant/util/template_renderer_test.rb", + "test/vagrant/util/translator_test.rb", + "test/vagrant/util/platform_test.rb", + "test/vagrant/util/error_helper_test.rb", + "test/vagrant/util/plain_logger_test.rb", + "test/vagrant/ssh_session_test.rb", + "test/vagrant/ssh_test.rb" ] if s.respond_to? :specification_version then @@ -265,14 +265,14 @@ Gem::Specification.new do |s| s.specification_version = 3 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q, ["~> 0.6.2"]) + s.add_runtime_dependency(%q, ["~> 0.7.0"]) s.add_runtime_dependency(%q, [">= 2.0.19"]) s.add_runtime_dependency(%q, [">= 1.0.2"]) s.add_runtime_dependency(%q, [">= 1.2.0"]) s.add_runtime_dependency(%q, ["= 0.5.2"]) s.add_runtime_dependency(%q, ["~> 0.0.6"]) else - s.add_dependency(%q, ["~> 0.6.2"]) + s.add_dependency(%q, ["~> 0.7.0"]) s.add_dependency(%q, [">= 2.0.19"]) s.add_dependency(%q, [">= 1.0.2"]) s.add_dependency(%q, [">= 1.2.0"]) @@ -280,7 +280,7 @@ Gem::Specification.new do |s| s.add_dependency(%q, ["~> 0.0.6"]) end else - s.add_dependency(%q, ["~> 0.6.2"]) + s.add_dependency(%q, ["~> 0.7.0"]) s.add_dependency(%q, [">= 2.0.19"]) s.add_dependency(%q, [">= 1.0.2"]) s.add_dependency(%q, [">= 1.2.0"])