Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6a0723a

Browse files
committed
Fix Version-String
1 parent 02114ae commit 6a0723a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/utplsql/api/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Version implements Comparable<Version> {
3232
public final static Version V3_1_5 = new Version("3.1.5", 3, 1, 5, 2707, true);
3333
public final static Version V3_1_6 = new Version("3.1.6", 3, 1, 6, 2729, true);
3434
public final static Version V3_1_7 = new Version("3.1.7", 3, 1, 7, 3085, true);
35-
public final static Version V3_1_8 = new Version("3.1.7", 3, 1, 8, 3188, true);
35+
public final static Version V3_1_8 = new Version("3.1.8", 3, 1, 8, 3188, true);
3636
private final static Map<String, Version> knownVersions =
3737
Stream.of(V3_0_0, V3_0_1, V3_0_2, V3_0_3, V3_0_4, V3_1_0, V3_1_1, V3_1_2, V3_1_3, V3_1_4, V3_1_5, V3_1_6, V3_1_7, V3_1_8)
3838
.collect(toMap(Version::toString, Function.identity()));

0 commit comments

Comments
 (0)