Update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2010-09-20 08:55:13 -06:00
parent bc4abbd8f2
commit 51d576e50d
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
## 0.6.0 (unreleased)
- VM name now defaults to the name of the containing folder, plus a timestamp.
This should make it easier to identify VMs in the VirtualBox GUI.
- Exposed Vagrant test helpers in `Vagrant::TestHelpers` for plugins to easily
test themselves against Vagrant environments.
- **Plugins** have landed. Plugins are simply gems which have a `vagrant_init.rb`

View File

@ -27,6 +27,7 @@ Vagrant::Config.run do |config|
config.vm.system = :linux
config.vm.customize do |vm|
# Make VM name the name of the containing folder by default
vm.name = File.basename(File.expand_path("../", Vagrant.source_root)) + "_#{Time.now.to_i}"
end