Skip to content

Commit 4bad4ef

Browse files
committed
Update 2.x to 2.20.0
Signed-off-by: Andriy Redko <[email protected]>
1 parent a24646c commit 4bad4ef

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
opensearch = 2.19.0
1+
opensearch = 2.20.0

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
opensearch = "2.19.0"
2+
opensearch = "2.20.0"
33
lucene = "9.12.1"
44

55
bundled_jdk_vendor = "adoptium"

libs/core/src/main/java/org/opensearch/Version.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
145145
public static final Version V_2_18_0 = new Version(2180099, org.apache.lucene.util.Version.LUCENE_9_12_0);
146146
public static final Version V_2_18_1 = new Version(2180199, org.apache.lucene.util.Version.LUCENE_9_12_1);
147147
public static final Version V_2_19_0 = new Version(2190099, org.apache.lucene.util.Version.LUCENE_9_12_1);
148-
public static final Version CURRENT = V_2_19_0;
148+
public static final Version V_2_20_0 = new Version(2200099, org.apache.lucene.util.Version.LUCENE_9_12_1);
149+
public static final Version CURRENT = V_2_20_0;
149150

150151
public static Version fromId(int id) {
151152
final Version known = LegacyESVersion.idToVersion.get(id);

0 commit comments

Comments
 (0)