Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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('-')
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading