From ecab260ff9e40ee53dce5c7145cc651153bd30dd Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Thu, 25 Jun 2026 00:35:23 +0000 Subject: [PATCH] Increment version to 3.7.1-SNAPSHOT Signed-off-by: opensearch-ci-bot --- .github/workflows/backwards_compatibility_tests_workflow.yml | 4 ++-- build.gradle | 2 +- gradle.properties | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/backwards_compatibility_tests_workflow.yml b/.github/workflows/backwards_compatibility_tests_workflow.yml index 1a91dd2df..f7300485a 100644 --- a/.github/workflows/backwards_compatibility_tests_workflow.yml +++ b/.github/workflows/backwards_compatibility_tests_workflow.yml @@ -26,7 +26,7 @@ jobs: java: [21, 25] os: [ubuntu-latest] bwc_version : ["2.9.0","2.10.0","2.11.0","2.12.0","2.13.0","2.14.0","2.15.0","2.16.0","2.17.0","2.18.0","2.19.1","3.0.0", "3.1.0", "3.2.0", "3.3.0", "3.4.0", "3.5.0", "3.6.0"] - opensearch_version : ["3.7.0-SNAPSHOT"] + opensearch_version : ["3.7.1-SNAPSHOT"] name: NeuralSearch Restart-Upgrade BWC Tests runs-on: ${{ matrix.os }} @@ -68,7 +68,7 @@ jobs: java: [21, 25] os: [ubuntu-latest] bwc_version: ["2.19.1","3.0.0", "3.1.0", "3.2.0", "3.3.0","3.4.0", "3.5.0", "3.6.0"] - opensearch_version : ["3.7.0-SNAPSHOT"] + opensearch_version : ["3.7.1-SNAPSHOT"] name: NeuralSearch Rolling-Upgrade BWC Tests runs-on: ${{ matrix.os }} diff --git a/build.gradle b/build.gradle index cff24e156..c73759f87 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ import java.util.concurrent.Callable buildscript { ext { - opensearch_version = System.getProperty("opensearch.version", "3.7.0-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "3.7.1-SNAPSHOT") buildVersionQualifier = System.getProperty("build.version_qualifier", "") isSnapshot = "true" == System.getProperty("build.snapshot", "true") version_tokens = opensearch_version.tokenize('-') diff --git a/gradle.properties b/gradle.properties index 4df27afd9..8f1a9af9e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,7 +7,7 @@ # https://github.com/opensearch-project/OpenSearch/blob/main/libs/core/src/main/java/org/opensearch/Version.java . # Wired compatibility of OpenSearch works like 3.x version is compatible with 2.(latest-major) version. # Therefore, to run rolling-upgrade BWC Test on local machine the BWC version here should be set 2.(latest-major). -systemProp.bwc.version=3.7.0-SNAPSHOT +systemProp.bwc.version=3.7.1-SNAPSHOT systemProp.bwc.bundle.version=3.6.0 # For fixing Spotless check with Java 17