Skip to content

Commit

Permalink
Upgrade ASM to 8.0 (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Mar 28, 2020
1 parent bbff1f5 commit ed4653e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jacoco/pom.xml
Expand Up @@ -111,7 +111,7 @@
<configuration>
<rules>
<requireFilesSize>
<maxsize>4400000</maxsize>
<maxsize>4500000</maxsize>
<minsize>3400000</minsize>
<files>
<file>${project.build.directory}/jacoco-${qualified.bundle.version}.zip</file>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion org.jacoco.build/pom.xml
Expand Up @@ -139,7 +139,7 @@
<argLine>${jvm.args}</argLine>

<!-- Dependencies versions -->
<asm.version>7.2</asm.version>
<asm.version>8.0</asm.version>
<ant.version>1.7.1</ant.version>
<args4j.version>2.0.28</args4j.version>
<junit.version>4.13</junit.version>
Expand Down
Expand Up @@ -27,7 +27,7 @@ private InstrSupport() {
}

/** ASM API version */
public static final int ASM_API_VERSION = Opcodes.ASM7;
public static final int ASM_API_VERSION = Opcodes.ASM8;

// === Data Field ===

Expand Down
2 changes: 2 additions & 0 deletions org.jacoco.doc/docroot/doc/changes.html
Expand Up @@ -49,6 +49,8 @@ <h3>Non-functional Changes</h3>
<li>Support for Pack200 was removed in JDK 14. JaCoCo will now throw a detailed
exception when Pack200 archives are processed with the latest JDKs
(GitHub <a href="https://github.com/jacoco/jacoco/issues/984">#984</a>).</li>
<li>JaCoCo now depends on ASM 8.0
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1032">#1032</a>).</li>
</ul>

<h2>Release 0.8.5 (2019/10/11)</h2>
Expand Down

0 comments on commit ed4653e

Please sign in to comment.