diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 13243cc8b5b..6e9068fce1f 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -485,6 +485,53 @@ types.
+
+
+
+
+
New features include:
+
+
+- Beginning with LLVM 2.5, llvmc2 is known as just 'llvmc'. The
+ old llvmc driver was removed.
+
+- The Clang plugin was substantially improved and is now enabled
+ by default. The command 'llvmc --clang' can be now used as a
+ synonym to 'ccc'.
+
+- There is now a '--check-graph' option which is supposed to
+ catch common errors like multiple default edges, mismatched
+ output/input language names and cycles. In general, these
+ checks can't be done at compile-time because of the need to
+ support plugins.
+
+- Plugins are now more flexible and can refer to compilation
+ graph nodes and options defined in other plugins. To manage
+ dependencies, a priority-sorting mechanism was introduced. This
+ change affects the '.td' file syntax; see the documentation for
+ details.
+
+- Hooks can now be provided with arguments. The syntax
+ is "$CALL(MyHook, 'Arg1', 'Arg2', 'Arg #3')".
+
+- A new option type: multi-valued option, for options that take
+ more than one argument (for example, "-foo a b c").
+
+- New option properties: 'one_or_more', 'zero_or_more', 'hidden'
+ and 'really_hidden'.
+
+- The 'case' expression gained an 'error' action and an 'empty'
+ test (equivalent to '(not (not_empty ...))').
+
+- Documentation now looks more consistent to the rest of the LLVM
+ docs. There is also a man page now.
+
+
+
+
+