+
+ Vagrant 0.2 has been released! Read about the changes here.
+
\ No newline at end of file
diff --git a/css/screen.css b/css/screen.css
index 39b03c448..2913c9899 100644
--- a/css/screen.css
+++ b/css/screen.css
@@ -174,6 +174,18 @@ blockquote {
font-size: 1.3em;
}
+/* ----- notice boxes ----- */
+
+.notice {
+ text-align: center;
+ padding: 10px;
+ background-color: #DFF2BF;
+ border: 1px solid #4F8A10;
+ color: #4F8A10;
+ margin: 0;
+ margin-bottom: 15px;
+}
+
/* -------------------------------
HEADER
------------------------------ */
diff --git a/docs/changes/changes_01x_02x.md b/docs/changes/changes_01x_02x.md
index 31b8db67e..26db71add 100644
--- a/docs/changes/changes_01x_02x.md
+++ b/docs/changes/changes_01x_02x.md
@@ -92,4 +92,21 @@ Exact details on how to use chef server with Vagrant are explained on the
Vagrant will now give an error if it detects that the configured forwarded ports
would collide with another running virtual machine's forwarded ports. Before this
feature, this would fail silently, causing unexpected behavior such as the
-VM successfully running but the forwarded port going to some other VM.
\ No newline at end of file
+VM successfully running but the forwarded port going to some other VM.
+
+
+## VM Customization
+
+You can now customize the specs and details of the virtual machine via the
+_vm customization_ configuration. This allows you to modify details such as the
+RAM or name of the VM. It is passed in the complete [VirtualBox::VM](http://mitchellh.github.com/virtualbox/VirtualBox/VM.html) object, so
+you're free to modify anything with it. Example below:
+
+{% highlight ruby %}
+Vagrant::Config.run do |config|
+ config.vm.customize do |vm|
+ vm.name = "my vagrant VM"
+ vm.memory = 512
+ end
+end
+{% endhighlight %}