Skip to content

Commit

Permalink
Set version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xaa4eb committed Oct 13, 2024
1 parent 1a39842 commit 42eb593
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major_version=0.3
minor_version=1
mod=SNAPSHOT
major_version=1.0
minor_version=0
mod=
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

public class BenchmarkConstants {

public static final String ENABLE_AGENT_SYSTEM_PROP = "-javaagent:../ulyp-agent/build/libs/ulyp-agent-0.3.1-SNAPSHOT.jar";
public static final String ENABLE_AGENT_SYSTEM_PROP = "-javaagent:../ulyp-agent/build/libs/ulyp-agent-1.0.0.jar";
public static final int FORKS = 5;
}
4 changes: 2 additions & 2 deletions ulyp-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ run {
def platform = project.findProperty("platform")
def jarName
if (platform != null) {
jarName = "ulyp-${rootProject.version}-${platform}.jar"
jarName = "ulyp-ui-${rootProject.version}-${platform}.jar"
} else {
jarName = "ulyp-${rootProject.version}.jar"
jarName = "ulyp-ui-${rootProject.version}.jar"
}

task fatJar(type: Jar) {
Expand Down

0 comments on commit 42eb593

Please sign in to comment.