Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade ASM to 8.0 #1032

Merged
merged 2 commits into from Mar 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
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