Skip to content

Commit bb7407b

Browse files
committed
Included new core versions
1 parent 2ea07e4 commit bb7407b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,12 @@ public class Version implements Comparable<Version> {
2727
public final static Version V3_1_0 = new Version("3.1.0", 3, 1, 0, null, true);
2828
public final static Version V3_1_1 = new Version("3.1.1", 3, 1, 1, null, true);
2929
public final static Version V3_1_2 = new Version("3.1.2", 3, 1, 2, null, true);
30+
public final static Version V3_1_3 = new Version("3.1.3", 3, 1, 3, null, true);
31+
public final static Version V3_1_4 = new Version("3.1.4", 3, 1, 4, null, true);
32+
public final static Version V3_1_5 = new Version("3.1.5", 3, 1, 5, null, true);
33+
public final static Version V3_1_6 = new Version("3.1.6", 3, 1, 6, null, true);
3034
private final static Map<String, Version> knownVersions =
31-
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)
35+
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)
3236
.collect(toMap(Version::toString, Function.identity()));
3337

3438
private final String origString;

0 commit comments

Comments
 (0)