Trac #208: New option classdumpdir for JaCoCo agent
diff --git a/org.jacoco.doc/docroot/doc/agent.html b/org.jacoco.doc/docroot/doc/agent.html
index 79c5003..f5cf866 100644
--- a/org.jacoco.doc/docroot/doc/agent.html
+++ b/org.jacoco.doc/docroot/doc/agent.html
@@ -167,6 +167,15 @@
       </td>
       <td><code>6300</code></td>
     </tr>
+    <tr>
+      <td><code>classdumpdir</code></td>
+      <td>Location relative to the working directory where all class files seen
+          by the agent are dumped to. This can be useful for debugging purposes
+          or in case of dynamically created classes for example when scripting
+          engines are used.
+      </td>
+      <td><i>no dumps</i></td>
+    </tr>
   </tbody>
 </table>
 
diff --git a/org.jacoco.doc/docroot/doc/ant.html b/org.jacoco.doc/docroot/doc/ant.html
index 38d8bdd..4da2fff 100644
--- a/org.jacoco.doc/docroot/doc/ant.html
+++ b/org.jacoco.doc/docroot/doc/ant.html
@@ -254,6 +254,15 @@
       </td>
       <td><code>6300</code></td>
     </tr>
+    <tr>
+      <td><code>classdumpdir</code></td>
+      <td>Location relative to the working directory where all class files seen
+          by the agent are dumped to. This can be useful for debugging purposes
+          or in case of dynamically created classes for example when scripting
+          engines are used.
+      </td>
+      <td><i>no dumps</i></td>
+    </tr>
   </tbody>
 </table>
 
diff --git a/org.jacoco.doc/docroot/doc/changes.html b/org.jacoco.doc/docroot/doc/changes.html
index 1c3f073..683cb6e 100644
--- a/org.jacoco.doc/docroot/doc/changes.html
+++ b/org.jacoco.doc/docroot/doc/changes.html
@@ -20,11 +20,18 @@
 
 <h2>Trunk Build @qualified.bundle.version@ (@build.date@)</h2>
 
+<h3>New Features</h3>
+<ul>
+  <li>Support for parallel Maven builds (Trac #191).</li>
+  <li>New agent option <code>classdumpdir</code> to dump all class files seen
+      by the JaCoCo agent to disk. This option is also available for Ant and
+      Maven (Trac #208).</li>
+</ul>
+
 <h3>Non-functional Changes</h3>
 <ul>
   <li>Documentation now includes Maven example and Maven goal documentation
       (Trac #201, #202).</li>
-  <li>Support for parallel Maven builds (Trac #191).</li>
   <li>Reworked instrumentation strategy to avoid verifier error "Uninitialized
       object exists on backward branch" with certain Java 7 class files
       (Trac #154).</li>