Skip to content

Commit 1defc37

Browse files
Bump 2.x to 2.17.0 (opensearch-project#15052)
Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
1 parent cc86e27 commit 1defc37

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci/bwcVersions

+1
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,4 @@ BWC_VERSION:
9292
- "2.14.1"
9393
- "2.15.0"
9494
- "2.15.1"
95+
- "2.16.0"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.16.0
1+
opensearch = 2.17.0
22
lucene = 9.11.1
33

44
bundled_jdk_vendor = adoptium

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
136136
public static final Version V_2_15_0 = new Version(2150099, org.apache.lucene.util.Version.LUCENE_9_10_0);
137137
public static final Version V_2_15_1 = new Version(2150199, org.apache.lucene.util.Version.LUCENE_9_10_0);
138138
public static final Version V_2_16_0 = new Version(2160099, org.apache.lucene.util.Version.LUCENE_9_11_1);
139-
public static final Version CURRENT = V_2_16_0;
139+
public static final Version V_2_17_0 = new Version(2170099, org.apache.lucene.util.Version.LUCENE_9_11_1);
140+
public static final Version CURRENT = V_2_17_0;
140141

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

0 commit comments

Comments
 (0)