From 3f1f44b6c272608ae8325b32ca405d04bf015082 Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Wed, 15 Dec 2021 00:32:24 +0000 Subject: [PATCH] Bump version to 1.2.2 Signed-off-by: Andrew Ross --- .github/workflows/build.yml | 2 +- build.gradle | 2 +- gradle.properties | 2 +- src/test/resources/security/scripts/SecurityAdminWrapper.sh | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d754108f..7dde780b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v2 - name: Build and run Replication tests run: | - ./gradlew clean release -Dbuild.snapshot=true -Dopensearch.version=1.2.1-SNAPSHOT + ./gradlew clean release -Dbuild.snapshot=true -Dopensearch.version=1.2.2-SNAPSHOT - name: Upload failed logs uses: actions/upload-artifact@v2 if: failure() diff --git a/build.gradle b/build.gradle index 284aa9b4..633571bf 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ buildscript { ext { isSnapshot = "true" == System.getProperty("build.snapshot", "false") - opensearch_version = System.getProperty("opensearch.version", "1.2.1-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.2.2-SNAPSHOT") // Taken from https://github.com/opensearch-project/alerting/blob/main/build.gradle#L33 // 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') diff --git a/gradle.properties b/gradle.properties index 93820353..ae1b8dee 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,4 +9,4 @@ # GitHub history for details. # -version = 1.2.1.0 +version = 1.2.2.0 diff --git a/src/test/resources/security/scripts/SecurityAdminWrapper.sh b/src/test/resources/security/scripts/SecurityAdminWrapper.sh index 67499baa..6d2da948 100755 --- a/src/test/resources/security/scripts/SecurityAdminWrapper.sh +++ b/src/test/resources/security/scripts/SecurityAdminWrapper.sh @@ -13,9 +13,9 @@ BUILD_DIR=$1 LEADER_CONFIG_DIR=$BUILD_DIR/testclusters/leaderCluster-0/config -LEADER_PLUGIN_DIR=$BUILD_DIR/testclusters/leaderCluster-0/distro/1.2.1-INTEG_TEST/plugins/opensearch-security/ +LEADER_PLUGIN_DIR=$BUILD_DIR/testclusters/leaderCluster-0/distro/1.2.2-INTEG_TEST/plugins/opensearch-security/ FOLLOWER_CONFIG_DIR=$BUILD_DIR/testclusters/followCluster-0/config -FOLLOWER_PLUGIN_DIR=$BUILD_DIR/testclusters/followCluster-0/distro/1.2.1-INTEG_TEST/plugins/opensearch-security/ +FOLLOWER_PLUGIN_DIR=$BUILD_DIR/testclusters/followCluster-0/distro/1.2.2-INTEG_TEST/plugins/opensearch-security/ "$LEADER_PLUGIN_DIR/tools/securityadmin.sh" -p 9300 \ -cd "$LEADER_PLUGIN_DIR/securityconfig" \