*** empty log message ***
diff --git a/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties b/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
index 07b9578..c584eb1 100644
--- a/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
+++ b/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
@@ -1,7 +1,7 @@
 ### JavaBatchCompiler messages.

 

 ### compiler version id

-compiler.version = 0.206

+compiler.version = 0.216 (20011204)

 ### scanning

 scanning.start = Scanning of {0}

 scanning.done = Scanning of {0} DONE

diff --git a/buildnotes_jdt-core.html b/buildnotes_jdt-core.html
index 2db23b6..ac0634f 100644
--- a/buildnotes_jdt-core.html
+++ b/buildnotes_jdt-core.html
@@ -15,7 +15,18 @@
 <br>Project org.eclipse.jdt.core v_???

 <h2>

 What's new in this drop</h2>

-

+<ul>

+<li> New incremental builder implementation enabled by default (can reenable the 

+old implementation by changing the builder extension in the plugin.xml)

+<li> Delta processing is no longer creating unnecessary Java elements when

+traversing the resource delta.

+<li> Source folder resource copying no longer perfom any copies as soon as

+one source folder coincidates with the output location.

+<li> Open on selection is more fault-tolerant: will now try to locate a

+selected method for which argument types are incorrect.

+<li> Compiler no longer rejects correct code with respect to access to protected

+members defined in enclosing types (was only accepting a subset of correct scenarii).

+</ul>

 <h3>

 Problem Reports Fixed</h3>

 <a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=6456">6456</a>:

diff --git a/plugin.xml b/plugin.xml
index cc6a6a2..f118386 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -46,7 +46,7 @@
 	<builder>

 	<!-- old builder is "org.eclipse.jdt.internal.core.builder.impl.JavaBuilder" -->

 	<!-- new builder is "org.eclipse.jdt.internal.core.newbuilder.JavaBuilder" -->

-		<run class="org.eclipse.jdt.internal.core.builder.impl.JavaBuilder">

+		<run class="org.eclipse.jdt.internal.core.newbuilder.JavaBuilder">

 		</run>

 	</builder>

 </extension>