From cc9302c2c472530bd9a5c58a258914e3d2621661 Mon Sep 17 00:00:00 2001 From: Clay Downs Date: Thu, 2 Dec 2021 16:50:36 -0800 Subject: [PATCH] Bumps to version 1.3 Signed-off-by: Clay Downs --- .github/workflows/multi-node-test-workflow.yml | 2 +- .github/workflows/test-workflow.yml | 4 ++-- alerting/build.gradle | 2 +- build.gradle | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/multi-node-test-workflow.yml b/.github/workflows/multi-node-test-workflow.yml index 172800a2d..c8a7f270f 100644 --- a/.github/workflows/multi-node-test-workflow.yml +++ b/.github/workflows/multi-node-test-workflow.yml @@ -32,7 +32,7 @@ jobs: with: java-version: 14 - name: Run integration tests with multi node config - run: ./gradlew integTest -PnumNodes=3 -Dopensearch.version=1.2.0-SNAPSHOT + run: ./gradlew integTest -PnumNodes=3 -Dopensearch.version=1.3.0-SNAPSHOT - name: Pull and Run Docker run: | plugin=`ls alerting/build/distributions/*.zip` diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml index 5dba154c3..53897139b 100644 --- a/.github/workflows/test-workflow.yml +++ b/.github/workflows/test-workflow.yml @@ -31,7 +31,7 @@ jobs: - name: Build and run with Gradle - run: ./gradlew build -Dopensearch.version=1.2.0-SNAPSHOT + run: ./gradlew build -Dopensearch.version=1.3.0-SNAPSHOT # - name: Create Artifact Path # run: | @@ -50,4 +50,4 @@ jobs: # path: alerting-artifacts # Publish to local maven - name: Publish to Maven Local - run: ./gradlew publishToMavenLocal -Dopensearch.version=1.2.0-SNAPSHOT + run: ./gradlew publishToMavenLocal -Dopensearch.version=1.3.0-SNAPSHOT diff --git a/alerting/build.gradle b/alerting/build.gradle index 761304b1e..b0725de35 100644 --- a/alerting/build.gradle +++ b/alerting/build.gradle @@ -182,7 +182,7 @@ String bwcFilePath = "src/test/resources/bwc" testClusters { "${baseName}$i" { testDistribution = "ARCHIVE" - versions = ["7.10.2","1.2.0-SNAPSHOT"] + versions = ["7.10.2","1.3.0-SNAPSHOT"] numberOfNodes = 3 plugin(provider(new Callable(){ @Override diff --git a/build.gradle b/build.gradle index ff859d31c..e0feac94c 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ buildscript { apply from: 'build-tools/repositories.gradle' ext { - opensearch_version = System.getProperty("opensearch.version", "1.2.0-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.3.0-SNAPSHOT") // 1.0.0 -> 1.0.0.0, and 1.0.0-SNAPSHOT -> 1.0.0.0-SNAPSHOT opensearch_build = opensearch_version.replaceAll(/(\.\d)([^\d]*)$/, '$1.0$2') common_utils_version = System.getProperty("common_utils.version", opensearch_build)