Skip to content

Commit 1ddb631

Browse files
Increment version to 2.18.1 (opensearch-project#16571)
Update Version.java Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Co-authored-by: opensearch-ci-bot <83309141+opensearch-ci-bot@users.noreply.github.com>
1 parent 1c157dc commit 1ddb631

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
@@ -98,3 +98,4 @@ BWC_VERSION:
9898
- "2.17.0"
9999
- "2.17.1"
100100
- "2.17.2"
101+
- "2.18.0"

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
opensearch = 2.18.0
1+
opensearch = 2.18.1
22
lucene = 9.12.0
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
@@ -142,7 +142,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
142142
public static final Version V_2_17_1 = new Version(2170199, org.apache.lucene.util.Version.LUCENE_9_11_1);
143143
public static final Version V_2_17_2 = new Version(2170299, org.apache.lucene.util.Version.LUCENE_9_11_1);
144144
public static final Version V_2_18_0 = new Version(2180099, org.apache.lucene.util.Version.LUCENE_9_12_0);
145-
public static final Version CURRENT = V_2_18_0;
145+
public static final Version V_2_18_1 = new Version(2180199, org.apache.lucene.util.Version.LUCENE_9_12_0);
146+
public static final Version CURRENT = V_2_18_1;
146147

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

0 commit comments

Comments
 (0)