*** 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 a726528..f261741 100644
--- a/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
+++ b/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
@@ -46,7 +46,7 @@
 configure.duplicateCompliance = duplicate compliance setting specification: {0}
 configure.duplicateSource = duplicate source compliance setting specification: {0}
 configure.duplicateTarget = duplicate target compliance setting specification: {0}
-configure.source = source level should be comprised in between ''1.3'' and ''1.5'' (or ''5'' or ''5.0''): {0}
+configure.source = source level should be comprised in between ''1.3'' and ''1.6'' (or ''6'' or ''6.0''): {0}
 configure.duplicateOutputPath = duplicate output path specification: {0}
 configure.duplicateBootClasspath = duplicate bootclasspath specification: {0}
 configure.duplicateExtdirs = duplicate extdirs specification: {0}
@@ -55,7 +55,7 @@
 configure.invalidWarningConfiguration = invalid warning configuration: {0}
 configure.invalidWarning = invalid warning: {0}
 configure.invalidWarningOption = invalid warning option: {0}
-configure.targetJDK = target level should be comprised in between ''1.1'' and ''1.5'' (or ''5'' or ''5.0''): {0}
+configure.targetJDK = target level should be comprised in between ''1.1'' and ''1.6'' (or ''6'' or '6.0''): {0}
 configure.incompatibleTargetForSource = Target level ''{0}'' is incompatible with source level ''{1}''. A target level ''{1}'' or better is required
 configure.incompatibleComplianceForSource = Compliance level ''{0}'' is incompatible with source level ''{1}''. A compliance level ''{1}'' or better is required
 configure.incompatibleComplianceForTarget = Compliance level ''{0}'' is incompatible with target level ''{1}''. A compliance level ''{1}'' or better is required
@@ -116,8 +116,9 @@
 \    -1.3               use 1.3 compliance level (implicit -source 1.3 -target 1.1)\n\
 \    -1.4             + use 1.4 compliance level (implicit -source 1.3 -target 1.2)\n\
 \    -1.5               use 1.5 compliance level (implicit -source 1.5 -target 1.5)\n\
-\    -source <version>  set source level: 1.3 to 1.5 (or 5 or 5.0)\n\
-\    -target <version>  set classfile target level: 1.1 to 1.5 (or 5 or 5.0)\n\
+\    -1.6               use 1.6 compliance level (implicit -source 1.6 -target 1.6)\n\
+\    -source <version>  set source level: 1.3 to 1.6 (or 6 or 6.0)\n\
+\    -target <version>  set classfile target level: 1.1 to 1.6 (or 6 or 6.0)\n\
 \ \n\
 \ Warning options:\n\
 \    -deprecation     + deprecation outside deprecated code\n\
diff --git a/buildnotes_jdt-core.html b/buildnotes_jdt-core.html
index 4ebf525..0bdf223 100644
--- a/buildnotes_jdt-core.html
+++ b/buildnotes_jdt-core.html
@@ -53,6 +53,8 @@
   <li> <code>List l = (ArrayList) someList; </code></li>
   <li> <code>List foo(List someList) { return (ArrayList) someList;} </code></li>
   </ul></li>
+  <li>Compliance settings can now refer to "1.6" (aka "6.0") in addition to 1.3, 1.4 and 1.5. When classfile target is toggled to "1.6"
+  the major/minor version will be adjusted accordingly. Some 1.6 specific attributes (StackMapTable) are not produced yet.
 </ul>
 
 <h3>Problem Reports Fixed</h3>