Skip to content

Commit 96d7140

Browse files
Increment version to 2.16.1
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1a1b79d commit 96d7140

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.16.0
1+
opensearch = 2.16.1
22
lucene = 9.11.1
33

44
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
@@ -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_16_1 = new Version(20160199, org.apache.lucene.util.Version.LUCENE_9_11_1);
140+
public static final Version CURRENT = V_2_16_1;
140141

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

0 commit comments

Comments
 (0)