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

Use ASM9 API #1097

Merged
merged 2 commits into from Sep 29, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Expand Up @@ -27,7 +27,7 @@ private InstrSupport() {
}

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

// === Data Field ===

Expand Down
6 changes: 4 additions & 2 deletions org.jacoco.doc/docroot/doc/changes.html
Expand Up @@ -23,13 +23,15 @@ <h2>Snapshot Build @qualified.bundle.version@ (@build.date@)</h2>
<h3>New Features</h3>
<ul>
<li>JaCoCo now officially supports Java 15
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1094">#1094</a>).</li>
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1094">#1094</a>
marchof marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://github.com/jacoco/jacoco/issues/1097">#1097</a>).</li>
</ul>

<h3>Non-functional Changes</h3>
<ul>
<li>JaCoCo now depends on ASM 9.0
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1094">#1094</a>).</li>
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1094">#1094</a>,
<a href="https://github.com/jacoco/jacoco/issues/1097">#1097</a>).</li>
</ul>


Expand Down