Skip to content

Commit 540288f

Browse files
committed
EM 4.0.1-SNAPSHOT
1 parent da7d349 commit 540288f

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

jdk_11_gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
allprojects {
33
ext {
4-
EVOMASTER_VERSION = "3.4.1-SNAPSHOT"
4+
EVOMASTER_VERSION = "4.0.1-SNAPSHOT"
55
}
66
}

jdk_11_maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<properties>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50-
<evomaster-version>3.4.1-SNAPSHOT</evomaster-version>
50+
<evomaster-version>4.0.1-SNAPSHOT</evomaster-version>
5151
</properties>
5252

5353
<build>

jdk_17_gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
allprojects {
33
ext {
4-
EVOMASTER_VERSION = "3.4.1-SNAPSHOT"
4+
EVOMASTER_VERSION = "4.0.1-SNAPSHOT"
55
}
66
}

jdk_17_maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<properties>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50-
<evomaster-version>3.4.1-SNAPSHOT</evomaster-version>
50+
<evomaster-version>4.0.1-SNAPSHOT</evomaster-version>
5151
</properties>
5252

5353
<build>

jdk_21_maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<properties>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50-
<evomaster-version>3.4.1-SNAPSHOT</evomaster-version>
50+
<evomaster-version>4.0.1-SNAPSHOT</evomaster-version>
5151
</properties>
5252

5353
<build>

jdk_8_gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
allprojects {
33
ext {
4-
EVOMASTER_VERSION = "3.4.1-SNAPSHOT"
4+
EVOMASTER_VERSION = "4.0.1-SNAPSHOT"
55
}
66
}

jdk_8_maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<properties>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50-
<evomaster-version>3.4.1-SNAPSHOT</evomaster-version>
50+
<evomaster-version>4.0.1-SNAPSHOT</evomaster-version>
5151
</properties>
5252

5353
<build>

scripts/dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
EVOMASTER_VERSION = "3.4.1-SNAPSHOT"
3+
EVOMASTER_VERSION = "4.0.1-SNAPSHOT"
44

55
import sys
66
import os

scripts/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
target = sys.argv[1].strip()
1414

15-
if target != "wfd" && target != "em":
15+
if target != "wfd" and target != "em":
1616
println("Invalid target: " + target+". Only accepted 'wfd' and 'em' as valid targets")
1717
exit(1)
1818

0 commit comments

Comments
 (0)