From: Daniel Jasper <djasper@google.com>
Date: Wed, 11 Dec 2013 14:41:33 +0000 (+0000)
Subject: Add release notes for clang-format.
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87ddfddba2542a4167aade1b701f7dc8f92dac3f;p=clang

Add release notes for clang-format.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_34@197042 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 30221ddc64..033cb308d3 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -171,6 +171,19 @@ The static analyzer (which contains additional code checking beyond compiler
 warnings) has improved significantly in both in the core analysis engine and 
 also in the kinds of issues it can find.
 
+Clang Format
+------------
+
+Clang now includes a new tool ``clang-format`` which can be used to
+automatically format C, C++ and Objective-C source code. ``clang-format``
+automatically chooses linebreaks and indentation and can be easily integrated
+into editors, IDEs and version control systems. It supports several pre-defined
+styles as well as precise style control using a multitude of formatting
+options. ``clang-format`` itself is just a thin wrapper around a library which
+can also be used directly from code refactoring and code translation tools.
+More information can be found on `Clang Format's
+site <http://clang.llvm.org/docs/ClangFormat.html>`_.
+
 Windows Support
 ---------------