Update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2012-03-04 16:39:35 -08:00
parent 2703a34b28
commit 97cf6ddfba
3 changed files with 3 additions and 2 deletions

View File

@ -37,6 +37,7 @@
- Automatically convert all arguments to `customize` to strings.
- openSUSE host system. [GH-766]
- Fix subprocess IO deadlock which would occur on Windows. [GH-765]
- Fedora 16 guest support. [GH-772]
## 0.9.7 (February 9, 2012)

View File

@ -174,11 +174,11 @@ Vagrant.hosts.register(:windows) { Vagrant::Hosts::Windows }
# Register the built-in guests
Vagrant.guests.register(:arch) { Vagrant::Guest::Arch }
Vagrant.guests.register(:debian) { Vagrant::Guest::Debian }
Vagrant.guests.register(:fedora) { Vagrant::Guest::Fedora }
Vagrant.guests.register(:freebsd) { Vagrant::Guest::FreeBSD }
Vagrant.guests.register(:gentoo) { Vagrant::Guest::Gentoo }
Vagrant.guests.register(:linux) { Vagrant::Guest::Linux }
Vagrant.guests.register(:redhat) { Vagrant::Guest::Redhat }
Vagrant.guests.register(:fedora) { Vagrant::Guest::Fedora }
Vagrant.guests.register(:solaris) { Vagrant::Guest::Solaris }
Vagrant.guests.register(:suse) { Vagrant::Guest::Suse }
Vagrant.guests.register(:ubuntu) { Vagrant::Guest::Ubuntu }

View File

@ -5,11 +5,11 @@ module Vagrant
# Specific guests
autoload :Arch, 'vagrant/guest/arch'
autoload :Debian, 'vagrant/guest/debian'
autoload :Fedora, 'vagrant/guest/fedora'
autoload :FreeBSD, 'vagrant/guest/freebsd'
autoload :Gentoo, 'vagrant/guest/gentoo'
autoload :Linux, 'vagrant/guest/linux'
autoload :Redhat, 'vagrant/guest/redhat'
autoload :Fedora, 'vagrant/guest/fedora'
autoload :Solaris, 'vagrant/guest/solaris'
autoload :Suse, 'vagrant/guest/suse'
autoload :Ubuntu, 'vagrant/guest/ubuntu'