blob: d1ef0558c4c044fd3ab3bcaeadead5f4b27b45fb [file] [log] [blame]
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +00001<?xml version="1.0" encoding="ISO-8859-1" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
4<head>
5 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
6 <link rel="stylesheet" href=".resources/doc.css" charset="ISO-8859-1" type="text/css" />
Marc R. Hoffmannd7d2f752010-05-06 21:12:31 +00007 <link rel="shortcut icon" href=".resources/report.gif" type="image/gif" />
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +00008 <title>JaCoCo - Change History</title>
9</head>
10<body>
11
12<div class="breadcrumb">
Marc R. Hoffmannd7d2f752010-05-06 21:12:31 +000013 <a href="../index.html" class="el_report">JaCoCo</a> &gt;
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +000014 <a href="index.html" class="el_group">Documentation</a> &gt;
15 <span class="el_source">Change History</span>
16</div>
Marc R. Hoffmann17be2692010-02-02 05:44:47 +000017<div id="content">
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +000018
19<h1>Change History</h1>
20
Evgeny Mandrikov42c3c912011-12-15 22:39:19 +000021<h2>Trunk Build @qualified.bundle.version@ (@build.date@)</h2>
22
23
Evgeny Mandrikovadecf482011-12-15 22:21:20 +000024<h2>Release 0.5.5 (2011/12/15)</h2>
Marc R. Hoffmannfcd1e8b2011-11-22 20:15:15 +000025
26<h3>Fixed Bugs</h3>
27<ul>
28 <li>Correct default value for the <code>append</code> property of the
29 <code>dump</code> Ant task is <code>true</code> (Trac #178).</li>
Marc R. Hoffmannd8e44e42011-11-25 11:13:40 +000030 <li>Try/catch blocks must not be counted as instructions (Trac #179).</li>
Marc R. Hoffmannfcd1e8b2011-11-22 20:15:15 +000031</ul>
32
Marc R. Hoffmann34104342011-11-25 20:46:21 +000033<h3>Non-functional Changes</h3>
34<ul>
35 <li>Upgrade to ASM 3.3.1.</li>
36</ul>
37
Marc R. Hoffmann8d476e92011-11-09 18:43:35 +000038<h2>Release 0.5.4 (2011/11/11)</h2>
Marc R. Hoffmannf84469d2011-07-17 12:56:28 +000039
Evgeny Mandrikov6fa913b2011-10-12 18:26:09 +000040<h3>New Features</h3>
41<ul>
Evgeny Mandrikov8e7d6992011-11-11 20:26:38 +000042 <li>Maven plug-in: respect <code>includes</code> and <code>excludes</code>
43 properties in report Mojo (Trac #160).
44 <p>
45 Also note that:
46<pre class="source lang-xml">
47&lt;configuration&gt;
48 &lt;includes&gt;org.foo.*:org.bar.*&lt;/includes&gt;
49 &lt;excludes&gt;com.foo.*:com.bar.*&lt;/excludes&gt;
50&lt;/configuration&gt;
51</pre>
52 must be replaced on:
53<pre class="source lang-xml">
54&lt;configuration&gt;
55 &lt;includes&gt;
56 &lt;include>org.foo.*&lt;/include&gt;
57 &lt;include>org.bar.*&lt;/include&gt;
58 &lt;/includes&gt;
59 &lt;excludes&gt;
60 &lt;exclude&gt;com.foo.*&lt;/exclude&gt;
61 &lt;exclude&gt;com.bar.*&lt;/exclude&gt;
62 &lt;/excludes&gt;
63&lt;/configuration&gt;
64</pre>
65 </p>
66 </li>
Marc R. Hoffmann8d476e92011-11-09 18:43:35 +000067</ul>
68
69<h3>API Changes</h3>
70<ul>
71 <li><code>Instrumenter</code> now only requires
72 <code>IExecutionDataAccessorGenerator</code> instead of
73 <code>IRuntime</code> (Trac #174).</li>
74 <li>Removed reference to internal implementation classes from
75 <code>CoverageBuilder</code> API.</li>
76</ul>
77
78<h3>Non-functional Changes</h3>
79<ul>
80 <li>Release bundles from now on signed again.</li>
81 <li>Several documentation updates.</li>
Evgeny Mandrikov6fa913b2011-10-12 18:26:09 +000082</ul>
Marc R. Hoffmannf84469d2011-07-17 12:56:28 +000083
Evgeny Mandrikov71813992011-07-06 22:24:23 +000084<h2>Release 0.5.3 (2011/07/06)</h2>
Marc R. Hoffmannc4613ac2011-06-03 07:55:57 +000085
Evgeny Mandrikov90ad8622011-06-20 10:11:15 +000086<h3>New Features</h3>
87<ul>
88 <li>New Maven plug-in for JaCoCo agent setup and basic reporting (Trac #25).</li>
89 <li>Additional output mode implementation for JaCoCo agent based on JMX.</li>
90</ul>
91
Marc R. Hoffmannc4613ac2011-06-03 07:55:57 +000092<h3>Fixed Bugs</h3>
93<ul>
94 <li>Fixed problem with reporting of nested group structures (Trac #157).</li>
95</ul>
96
Evgeny Mandrikov31d0c902011-07-05 12:48:22 +000097<h3>Non-functional Changes</h3>
98<ul>
99 <li>JaCoCo build based on Maven (Trac #136).</li>
100 <li>JaCoCo published to Maven repository (Trac #149).</li>
101</ul>
Marc R. Hoffmannc4613ac2011-06-03 07:55:57 +0000102
Marc R. Hoffmann99b830c2011-05-19 20:21:48 +0000103<h2>Release 0.5.2 (2011/05/19)</h2>
Marc R. Hoffmann5625ff62011-03-27 12:53:52 +0000104
105<h3>New Features</h3>
106<ul>
Marc R. Hoffmanne3fc6e72011-05-11 17:31:23 +0000107 <li>JaCoCo reports cyclomatic complexity numbers (Trac #129).</li>
Marc R. Hoffmann5625ff62011-03-27 12:53:52 +0000108 <li>For HTML reports the tab width can be specified on the
109 <code>sourcefiles</code> attribute of the <code>report</code> Ant task
Marc R. Hoffmann0a36ba72011-05-16 20:39:53 +0000110 (Track #152).</li>
Marc R. Hoffmann5625ff62011-03-27 12:53:52 +0000111</ul>
112
Marc R. Hoffmann1d5fcba2011-05-11 19:01:53 +0000113<h3>Fixed Bugs</h3>
114<ul>
Marc R. Hoffmann0a36ba72011-05-16 20:39:53 +0000115 <li>Removed duplicate counters in the root node of XML reports (Trac #155).</li>
116 <li>Avoid <code>StackOverflowException</code> when analyzing methods with very
117 long instruction sequences (Trac #156). Many thanks to Jean-Eric Cuendet
118 for reporting and analyzing this!</li>
Marc R. Hoffmann1d5fcba2011-05-11 19:01:53 +0000119</ul>
120
Marc R. Hoffmann5625ff62011-03-27 12:53:52 +0000121<h3>API Changes</h3>
122<ul>
Marc R. Hoffmannef0204e2011-05-09 05:48:30 +0000123 <li><code>ICoverageNode</code> API has been extended for cyclomatic
124 complexity (Trac #129).</li>
Marc R. Hoffmann0a36ba72011-05-16 20:39:53 +0000125 <li>XML and CSV report includes new counter type <code>COMPLEXITY</code>
126 (Trac #129).</li>
Marc R. Hoffmann5625ff62011-03-27 12:53:52 +0000127 <li>New method <code>getTabWidth()</code> in callback interface
Marc R. Hoffmann0a36ba72011-05-16 20:39:53 +0000128 <code>ISourceFileLocator</code> instead of
129 <code>HTMLReportFormatter.setTabWidth()</code> which has been removed.
130 (Trac #152).</li>
Marc R. Hoffmann5625ff62011-03-27 12:53:52 +0000131</ul>
132
Marc R. Hoffmannf795a442011-03-21 22:31:19 +0000133<h2>Release 0.5.1 (2011/03/21)</h2>
Marc R. Hoffmann456cb132011-01-25 19:40:16 +0000134
Marc R. Hoffmannfc417962011-02-10 21:07:04 +0000135<h3>New Features</h3>
136<ul>
137 <li>Duplicate classes with identical identifiers are now ignored during
138 analysis.</li>
Evgeny Mandrikov71b5f6e2011-02-19 22:55:47 +0000139 <li>Added support for TestNG to Ant task Coverage (Track #144).</li>
Marc R. Hoffmannfc417962011-02-10 21:07:04 +0000140</ul>
141
Marc R. Hoffmann51a31352011-02-27 17:10:55 +0000142<h3>Fixed Bugs</h3>
143<ul>
Marc R. Hoffmann968c52d2011-03-17 15:42:32 +0000144 <li>Calculate correct stack map frames for Java 1.6 branches (Trac #139).</li>
145 <li>Link source files also for classes in default package (Trac #151).</li>
Marc R. Hoffmann51a31352011-02-27 17:10:55 +0000146</ul>
147
Marc R. Hoffmann456cb132011-01-25 19:40:16 +0000148<h3>Non-functional Changes</h3>
149<ul>
150 <li>API documentation cleanup (Track #140).</li>
151 <li>Removed obsolete examples from documentation (Trac #141).</li>
Marc R. Hoffmann0fd9c832011-03-16 20:42:40 +0000152 <li>Added reporting API example (Trac #146).</li>
153 <li>Reduced file size of HTML report source pages (Trac #148).</li>
Marc R. Hoffmann456cb132011-01-25 19:40:16 +0000154</ul>
155
Marc R. Hoffmann82c11be2011-02-11 15:26:19 +0000156<h3>API Changes</h3>
157<ul>
158 <li>Simplified reporting API (Trac #53).</li>
Evgeny Mandrikovbab5da42011-02-20 21:43:33 +0000159 <li>Use colon as separator character in agent parameters (Trac #143).</li>
Marc R. Hoffmann54e674c2011-03-10 15:28:21 +0000160 <li>Now also empty files are accepted as <code>*.exec</code> files (Trac #150).</li>
Marc R. Hoffmann82c11be2011-02-11 15:26:19 +0000161</ul>
162
Marc R. Hoffmann986c23f2011-01-19 21:58:11 +0000163<h2>Release 0.5.0 (2011/01/19)</h2>
Marc R. Hoffmann44c63c32010-10-26 20:50:56 +0000164
Marc R. Hoffmann0d8610b2010-12-16 20:45:27 +0000165<h3>New Features</h3>
166<ul>
167 <li>JaCoCo now reports branch coverage (Track #66).</li>
168</ul>
169
Marc R. Hoffmann44c63c32010-10-26 20:50:56 +0000170<h3>Fixed Bugs</h3>
171<ul>
Marc R. Hoffmann73ae8502010-11-12 14:54:13 +0000172 <li>Only process actual Java class files during analysis (SF #3106102).</li>
173 <li>Fix broken source links due to sort hash (Track #125).</li>
Marc R. Hoffmann52bbc7a2010-11-10 18:32:19 +0000174 <li>Fixed invalid OSGi headers in MANIFEST.MF files (Track #127).</li>
Marc R. Hoffmann1c8d52a2010-12-20 18:41:36 +0000175 <li>Try to avoid interference with Hibernate (SF #3134190).</li>
Marc R. Hoffmann2afd6112010-12-10 12:52:22 +0000176 <li>Provide proper error message in case of duplicate class names in the same
177 group (SF #3110219).</li>
Marc R. Hoffmann66aa3802011-01-19 08:44:38 +0000178 <li>Allow any number of probes in static interface initializers (SF #3161106).</li>
Marc R. Hoffmann44c63c32010-10-26 20:50:56 +0000179</ul>
180
Marc R. Hoffmann1c8d52a2010-12-20 18:41:36 +0000181<h3>API Changes</h3>
182<ul>
183 <li>All analysis specific APIs have been moved to package
Marc R. Hoffmann1571d7b2010-12-23 23:02:15 +0000184 <code>org.jacoco.core.analysis</code>.</li>
185 <li>The <code>IStructureVisitor</code> interface has been replaced by a
186 simplified version called <code>ICoverageVisitor</code> (Track #132).</li>
Marc R. Hoffmannd80d5232010-12-28 09:06:03 +0000187 <li>All counter creation and update APIs now accept <i>missed items</i> and
188 <i>covered items</i> as parameters (Track #131).</li>
Marc R. Hoffmannd7bc6892011-01-08 21:08:37 +0000189 <li>Instructions are now counted on a per line basis. Therefore some
190 interfaces in the <code>org.jacoco.core.analysis</code> package have
191 changed as well as the <code>line</code> element in the XML report
192 (Track #130).</li>
193 <li>Several internal implementation classes have removed from the core APIs or
194 have been replaced by new interfaces (Track #133).</li>
Marc R. Hoffmann1c8d52a2010-12-20 18:41:36 +0000195</ul>
196
Marc R. Hoffmann8365e5e2010-10-07 16:15:40 +0000197<h2>Release 0.4.1 (2010/10/07)</h2>
Marc R. Hoffmann046388a2010-06-09 17:22:29 +0000198
Marc R. Hoffmann2cb114d2010-08-18 16:14:10 +0000199<h3>New Features</h3>
200<ul>
Marc R. Hoffmann32fb0cf2010-10-06 13:34:14 +0000201 <li>New attribute <code>line</code> for <code>method</code> elements in the
202 XML report containing the first source line number of the method.
203 (Track #120).</li>
204 <li>Optional <code>locale</code> attribute for number rendering HTML reports,
205 also available as an attribute of the <code>html</code> tag of the
206 <code>report</code> Ant task (Track #122).</li>
Marc R. Hoffmann9daf4f92010-10-04 16:30:17 +0000207 <li>Coverage tables in HTML report are now sortable (Track #98).</li>
Marc R. Hoffmanne77d0c52010-08-18 18:24:33 +0000208 <li>The <code>report</code> Ant task issues a warning if source files are
209 provided but class files do not contain debug information to collect line
210 numbers (SF #3024486).</li>
Marc R. Hoffmann2cb114d2010-08-18 16:14:10 +0000211</ul>
212
Marc R. Hoffmannadcf1432010-06-23 06:40:16 +0000213<h3>Non-functional Changes</h3>
Marc R. Hoffmann26ec0ff2010-06-14 05:28:57 +0000214<ul>
Marc R. Hoffmanne77d0c52010-08-18 18:24:33 +0000215 <li>Reduced memory footprint for coverage data by 30% (Track #106).</li>
216 <li>Moved to Eclipse 3.6.x as development environment (Trac #115).</li>
217 <li>All delivered bundles and JAR files are signed (Trac #118).</li>
Marc R. Hoffmann26ec0ff2010-06-14 05:28:57 +0000218</ul>
219
Marc R. Hoffmann046388a2010-06-09 17:22:29 +0000220<h3>Fixed Bugs</h3>
221<ul>
Marc R. Hoffmann26ec0ff2010-06-14 05:28:57 +0000222 <li>Better error message when multiple JaCoCo agents are specified
Marc R. Hoffmann046388a2010-06-09 17:22:29 +0000223 (Track #103).</li>
Marc R. Hoffmann030cb772010-07-20 21:27:39 +0000224 <li>Fixed potential NPE at shutdown when running agent in
225 <code>tcpserver</code> mode (Track #117).</li>
Marc R. Hoffmanne9c536c2010-09-21 07:30:40 +0000226 <li>Agent now fails at startup when execution data file can't be opened
227 (Track #121).</li>
Marc R. Hoffmann046388a2010-06-09 17:22:29 +0000228</ul>
229
Marc R. Hoffmann3fc7c6a2010-06-04 10:01:47 +0000230<h2>Release 0.4.0 (2010/06/04)</h2>
Marc R. Hoffmann41f21f02010-04-05 16:05:22 +0000231
Marc R. Hoffmannadfa1182010-05-05 12:59:42 +0000232<h3>New Features</h3>
233<ul>
234 <li>Execution data now includes session information: an arbitrary identifier,
235 the start time and dump time (Trac #88).</li>
Marc R. Hoffmann70935f62010-05-06 14:32:56 +0000236 <li>Added session information to XML report (Trac #92).</li>
Marc R. Hoffmann9f1b5852010-05-12 16:02:40 +0000237 <li>New "Sessions" page in the HTML report shows information about each
238 sessions wherein execution data has been collected for the report
239 (Trac #93). Additionally all classes with execution data available are
240 listed on this page (Trac #94).</li>
Marc R. Hoffmann7c775162010-05-27 16:43:34 +0000241 <li>The agent now supports remote dumps via TCP/IP connections (Trac #82).</li>
242 <li>New Ant task <code>dump</code> to remotely collect coverage data from
243 agents (Trac #100).</li>
Marc R. Hoffmannadfa1182010-05-05 12:59:42 +0000244</ul>
245
Marc R. Hoffmanne78c8f62010-05-03 16:53:13 +0000246<h3>API Changes</h3>
247<ul>
248 <li>Execution data file header is written and read in any case (Trac #72).</li>
Marc R. Hoffmannadfa1182010-05-05 12:59:42 +0000249 <li>Added <code>dumponexit</code> to agent options (Trac #82).</li>
250 <li>Added <code>sessionid</code> to agent options (Trac #88).</li>
Brock Janiczakbd638302010-05-11 11:04:37 +0000251 <li>Added <code>output, address and port</code> to agent options (Trac #82).</li>
Marc R. Hoffmann94f9d3a2010-05-05 07:43:14 +0000252 <li>Additional and modified methods in <code>IRuntime</code> to produce
253 session information (Trac #88).</li>
Marc R. Hoffmannd7d2f752010-05-06 21:12:31 +0000254 <li>Coverage element type <code>SESSION</code> removed (Trac #95).</li>
Marc R. Hoffmann46a7fb72010-06-01 16:13:14 +0000255 <li>Removed several internal APIs from package
256 <code>org.jacoco.core.instr</code> used for class instrumentation.</li>
257 <li>Renamed class <code>org.jacoco.report.csv.CsvFormatter</code> to
258 <code>CSVFormatter</code> (upper case) for consistency with other
259 formatters.</li>
Marc R. Hoffmanne78c8f62010-05-03 16:53:13 +0000260</ul>
261
Marc R. Hoffmannfb0c5f82010-04-19 15:47:25 +0000262<h2>Release 0.3.3 (2010/04/19)</h2>
263
Marc R. Hoffmann41f21f02010-04-05 16:05:22 +0000264<h3>New Features</h3>
265<ul>
266 <li>Support for different archives (jar, war, ear etc.) and nested archives
Marc R. Hoffmannb9368b42010-04-09 21:10:51 +0000267 (Trac #78).</li>
Marc R. Hoffmannd6081482010-04-05 20:10:20 +0000268 <li>XML report with line level coverage information (requested for Sonar).</li>
Marc R. Hoffmann41f21f02010-04-05 16:05:22 +0000269</ul>
270
Marc R. Hoffmann56701262010-04-06 17:56:12 +0000271<h3>Fixed Bugs</h3>
272<ul>
273 <li>Correct stackmap frames for Java 1.6 class files. (Track #81).</li>
Marc R. Hoffmannb9368b42010-04-09 21:10:51 +0000274 <li>Avoid usage of <code>LocalVariableSorter</code> due to ASM bug #314563
275 (Track #69).</li>
Brock Janiczak4df31a12010-04-13 04:13:06 +0000276 <li>Nested Java/JUnit Ant tasks not being executed when coverage task disabled. (Track #85).</li>
Marc R. Hoffmann56701262010-04-06 17:56:12 +0000277</ul>
278
Marc R. Hoffmann51ca61b2010-04-01 16:30:27 +0000279<h2>Release 0.3.2 (2010/04/01)</h2>
Marc R. Hoffmanndc21be02010-03-02 15:08:10 +0000280
Marc R. Hoffmann1aa91e12010-03-04 12:37:15 +0000281<h3>New Features</h3>
282<ul>
Marc R. Hoffmann81f79202010-03-12 07:36:50 +0000283 <li>New HTML report option to directly create a zip file containing the report
Marc R. Hoffmannb9368b42010-04-09 21:10:51 +0000284 (Trac #12).</li>
Marc R. Hoffmann1aa91e12010-03-04 12:37:15 +0000285 <li>Code coverage for static initializers in interfaces (Trac #21).</li>
Marc R. Hoffmanndcad8bb2010-04-01 06:28:03 +0000286 <li>Better error handling for <code>report</code> Ant task (Trac #71).</li>
287 <li>Classes without instructions are excluded from reports (Trac #73).</li>
288</ul>
289
290<h3>Fixed Bugs</h3>
291<ul>
292 <li>XML and CSV report output now also works for structures without groups
Marc R. Hoffmannb9368b42010-04-09 21:10:51 +0000293 (Track #76).</li>
Marc R. Hoffmann1aa91e12010-03-04 12:37:15 +0000294</ul>
295
Marc R. Hoffmanndc21be02010-03-02 15:08:10 +0000296<h3>API Changes</h3>
297<ul>
Marc R. Hoffmanna942c892010-03-10 21:33:26 +0000298 <li>Consistent usage of the term "Missed" instead of "NotCovered" in all APIs
299 (Trac #72).</li>
300 <li>To support "off-line" instrumentation scenarios it is not required any
301 more to register instrumented classes with the runtime (Trac #74).</li>
Marc R. Hoffmanndc21be02010-03-02 15:08:10 +0000302</ul>
303
Marc R. Hoffmann5970c3d2010-02-09 21:20:46 +0000304<h2>Release 0.3.1 (2010/02/09)</h2>
Marc R. Hoffmann578947e2010-02-05 17:44:33 +0000305
306<h3>Fixed Bugs</h3>
307<ul>
308 <li>Ant tasks broken on Linux (Trac #68).</li>
309</ul>
310
Marc R. Hoffmann4bf5cc22010-02-02 22:34:38 +0000311<h2>Release 0.3.0 (2010/02/02)</h2>
Brock Janiczak003d47c2010-01-15 00:45:17 +0000312
Brock Janiczak003d47c2010-01-15 00:45:17 +0000313<h3>New Features</h3>
314<ul>
Marc R. Hoffmann2e313a42010-02-02 05:16:15 +0000315 <li>Report renders anonymous classes with type information (Trac #46).</li>
Marc R. Hoffmann46a7fb72010-06-01 16:13:14 +0000316 <li><code>enabled</code> property added to <code>agent</code> and
317 <code>coverage</code> Ant tasks (Trac #63).</li>
318 <li>Ant task <code>merge</code> added (Trac #52).</li>
Brock Janiczak003d47c2010-01-15 00:45:17 +0000319</ul>
320
321<h3>Fixed Bugs</h3>
Marc R. Hoffmann2e313a42010-02-02 05:16:15 +0000322<ul>
323 <li>New <code>IRuntime</code> implementation enables JaCoCo usage for J2EE
324 application servers like Glassfish.</li>
325</ul>
Brock Janiczak003d47c2010-01-15 00:45:17 +0000326
Marc R. Hoffmann1aa91e12010-03-04 12:37:15 +0000327<h3>API Changes</h3>
328<ul>
329 <li>Agent option and Ant task parameter <code>file</code> changed to
330 <code>destfile</code> (Trac #59).</li>
331 <li>Agent option and Ant task parameter <code>merge</code> changed to
332 <code>append</code> (Trac #51).</li>
333</ul>
334
Marc R. Hoffmann063f2942010-01-08 06:12:59 +0000335<h2>Release 0.2.0 (2010/01/08)</h2>
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +0000336
337<h3>New Features</h3>
338
Marc R. Hoffmann804d83f2009-11-10 12:58:44 +0000339<ul>
340 <li>Simplified probe data structure reduces memory usage (Trac #47).</li>
Marc R. Hoffmannf9b1dc92009-11-10 15:14:22 +0000341 <li>Performance test becomes part of the build.</li>
Marc R. Hoffmann063f2942010-01-08 06:12:59 +0000342 <li>New bundle <code>org.jacoco.agent</code> that provides the Java agent
343 as a resource (Trac #50).</li>
Marc R. Hoffmann804d83f2009-11-10 12:58:44 +0000344</ul>
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +0000345
Marc R. Hoffmann804d83f2009-11-10 12:58:44 +0000346<h3>Fixed Bugs</h3>
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +0000347
348<ul>
Marc R. Hoffmann063f2942010-01-08 06:12:59 +0000349 <li><code>ArrayIndexOutOfBoundsException</code> due to inconsistent processing
350 while instrumentation and analysis (Trac #44).</li>
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +0000351</ul>
352
353
354<h2>Release 0.1.0 (2009/10/28)</h2>
355
356<p>
357 The very first JaCoCo release.
358</p>
359
Marc R. Hoffmann17be2692010-02-02 05:44:47 +0000360</div>
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +0000361<div class="footer">
Marc R. Hoffmannb623ffb2010-05-06 19:48:08 +0000362 <span class="right"><a href="@jacoco.home.url@">JaCoCo</a> @qualified.bundle.version@</span>
Marc R. Hoffmanndf6ff962010-04-09 15:31:22 +0000363 <a href="license.html">Copyright</a> &copy; @copyright.years@ Mountainminds GmbH &amp; Co. KG and Contributors
Marc R. Hoffmanneb32a802009-10-30 14:49:22 +0000364</div>
365
366</body>
367</html>