Skip to content

Commit 3d8a3f5

Browse files
author
Lucas Santos
committed
Use only java 8 version...
Before i have mistakenly believed there was incompatibility between the compiled versions. It so happened that there was, but removing some string concats and comiling only with jdk 8 is compatible with the subsequent versions.
1 parent 40e913d commit 3d8a3f5

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
Capture all function calls including argument and return values.
66
Just plug the agent and get the results.
77
See function calls, parameters and return values all at once.
8-
[JAVA 8 Latest release v27.0.0](https://repo.maven.apache.org/maven2/com/github/beothorn/javaFlame/27.0.0/javaFlame-27.0.0-java8.jar)
9-
[JAVA 11 Latest release v27.0.0](https://repo.maven.apache.org/maven2/com/github/beothorn/javaFlame/27.0.0/javaFlame-27.0.0-java11.jar)
10-
[JAVA 21 Latest release v27.0.0](https://repo.maven.apache.org/maven2/com/github/beothorn/javaFlame/27.0.0/javaFlame-27.0.0-java21.jar)
8+
[Latest release v27.1.0](https://repo.maven.apache.org/maven2/com/github/beothorn/javaFlame/27.1.0/javaFlame-27.1.0-java8.jar)
119

1210
Want to see it in action? [Check out this rendering of some sort algorithms flamegraphs](https://beothorn.github.io/javaflame).
1311

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ afterEvaluate {
126126
create(publicationName, MavenPublication) {
127127
groupId = 'com.github.beothorn'
128128
artifactId = 'javaFlame'
129-
version = '27.0.0'
129+
version = '27.1.0'
130130

131131
// Include the custom JAR
132132
artifact(tasks.named(jarTaskName).get()) {

src/main/java/com/github/beothorn/agent/MethodInstrumentationAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*/
4141
public class MethodInstrumentationAgent {
4242

43-
public static final String VERSION = "v27.0.0";
43+
public static final String VERSION = "v27.1.0";
4444

4545
// These packages needs to be ignored. They belong to the agent.
4646
public static final String AGENT_PACKAGE = "com.github.beothorn.agent";

src/main/resources/com/github/beothorn/agent/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<img alt="logo" id="logo" width="100px" src="./logo.svg"/>
1111
<div id="metadata">
1212
<p>Javaflame v27.0.0</p>
13+
<p>Javaflame v27.1.0</p>
1314
<p id="arguments"></p>
1415
<p>First snapshot timestamp: <span id="startTimestamp"></span></p>
1516
<p>Last snapshot timestamp: &nbsp;<span id="finalTimestamp"></span></p>

0 commit comments

Comments
 (0)