From d69b3440e88c3291771166b4738193f0d729ed41 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Thu, 5 May 2022 16:17:11 -0400 Subject: [PATCH] Incremented version to 1.3.3 (#3203) Signed-off-by: GitHub 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 4d349111103d8..6bec46e5585ae 100644 --- a/.ci/bwcVersions +++ b/.ci/bwcVersions @@ -86,3 +86,4 @@ BWC_VERSION: - "1.2.5" - "1.3.0" - "1.3.1" + - "1.3.2" diff --git a/buildSrc/version.properties b/buildSrc/version.properties index 496c2a3624f7f..4ef46ac94a110 100644 --- a/buildSrc/version.properties +++ b/buildSrc/version.properties @@ -1,4 +1,4 @@ -opensearch = 1.3.2 +opensearch = 1.3.3 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 781a767fd49e3..0e78dcf7a355e 100644 --- a/server/src/main/java/org/opensearch/Version.java +++ b/server/src/main/java/org/opensearch/Version.java @@ -83,7 +83,8 @@ public class Version implements Comparable, ToXContentFragment { public static final Version V_1_3_0 = new Version(1030099, org.apache.lucene.util.Version.LUCENE_8_10_1); public static final Version V_1_3_1 = new Version(1030199, org.apache.lucene.util.Version.LUCENE_8_10_1); public static final Version V_1_3_2 = new Version(1030299, org.apache.lucene.util.Version.LUCENE_8_10_1); - public static final Version CURRENT = V_1_3_2; + public static final Version V_1_3_3 = new Version(1030399, org.apache.lucene.util.Version.LUCENE_8_10_1); + public static final Version CURRENT = V_1_3_3; public static Version readVersion(StreamInput in) throws IOException { return fromId(in.readVInt());