From d45bad165a44ad187a91fe3b51e0c19597bff44a Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Thu, 17 Nov 2022 12:39:55 -0500 Subject: [PATCH] Incremented version to 2.4.1 (#5268) Co-authored-by: opensearch-ci-bot --- .ci/bwcVersions | 1 + buildSrc/version.properties | 2 +- server/src/main/java/org/opensearch/Version.java | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.ci/bwcVersions b/.ci/bwcVersions index 7e8d11eb28c6c..8e35655b454ab 100644 --- a/.ci/bwcVersions +++ b/.ci/bwcVersions @@ -54,3 +54,4 @@ BWC_VERSION: - "2.2.2" - "2.3.0" - "2.3.1" + - "2.4.0" diff --git a/buildSrc/version.properties b/buildSrc/version.properties index e4658c5f2a054..56d53d51465f1 100644 --- a/buildSrc/version.properties +++ b/buildSrc/version.properties @@ -1,4 +1,4 @@ -opensearch = 2.4.0 +opensearch = 2.4.1 lucene = 9.4.1 bundled_jdk_vendor = adoptium diff --git a/server/src/main/java/org/opensearch/Version.java b/server/src/main/java/org/opensearch/Version.java index b026f70e2886b..3e9a844738ea4 100644 --- a/server/src/main/java/org/opensearch/Version.java +++ b/server/src/main/java/org/opensearch/Version.java @@ -102,7 +102,8 @@ public class Version implements Comparable, ToXContentFragment { public static final Version V_2_3_0 = new Version(2030099, org.apache.lucene.util.Version.LUCENE_9_3_0); public static final Version V_2_3_1 = new Version(2030199, org.apache.lucene.util.Version.LUCENE_9_3_0); public static final Version V_2_4_0 = new Version(2040099, org.apache.lucene.util.Version.LUCENE_9_4_1); - public static final Version CURRENT = V_2_4_0; + public static final Version V_2_4_1 = new Version(2040199, org.apache.lucene.util.Version.LUCENE_9_4_1); + public static final Version CURRENT = V_2_4_1; public static Version readVersion(StreamInput in) throws IOException { return fromId(in.readVInt());