From 6da744578d1278f14d14c64ac2c72b26ff74f790 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:22:17 -0700 Subject: [PATCH] [AUTO] Incremented version to 1.3.11. (#7629) * Incremented version to 1.3.11 Signed-off-by: GitHub * Fix version identifier Signed-off-by: Kunal Kotwani --------- Signed-off-by: GitHub Signed-off-by: Kunal Kotwani Co-authored-by: opensearch-ci-bot Co-authored-by: Kunal Kotwani --- .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 bf6e86fc290e9..2bfabc82bc144 100644 --- a/.ci/bwcVersions +++ b/.ci/bwcVersions @@ -94,3 +94,4 @@ BWC_VERSION: - "1.3.7" - "1.3.8" - "1.3.9" + - "1.3.10" diff --git a/buildSrc/version.properties b/buildSrc/version.properties index 4dc07f73a7515..91508244637b2 100644 --- a/buildSrc/version.properties +++ b/buildSrc/version.properties @@ -1,4 +1,4 @@ -opensearch = 1.3.10 +opensearch = 1.3.11 lucene = 8.10.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 e77858b054bef..c8c75c62dfc08 100644 --- a/server/src/main/java/org/opensearch/Version.java +++ b/server/src/main/java/org/opensearch/Version.java @@ -91,7 +91,8 @@ public class Version implements Comparable, ToXContentFragment { public static final Version V_1_3_8 = new Version(1030899, org.apache.lucene.util.Version.LUCENE_8_10_1); public static final Version V_1_3_9 = new Version(1030999, org.apache.lucene.util.Version.LUCENE_8_10_1); public static final Version V_1_3_10 = new Version(1031099, org.apache.lucene.util.Version.LUCENE_8_10_1); - public static final Version CURRENT = V_1_3_10; + public static final Version V_1_3_11 = new Version(1031199, org.apache.lucene.util.Version.LUCENE_8_10_1); + public static final Version CURRENT = V_1_3_11; public static Version readVersion(StreamInput in) throws IOException { return fromId(in.readVInt());