From c813fb8a3ae9a830effd1e6165c16f3341008b35 Mon Sep 17 00:00:00 2001 From: Tyler Ohlsen Date: Wed, 30 Jun 2021 10:47:18 -0700 Subject: [PATCH] Bump plugin version to 1.0.0.0 (#110) Signed-off-by: Tyler Ohlsen --- .github/workflows/CI.yml | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 868d80650..de5489d76 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -33,7 +33,7 @@ jobs: with: repository: 'opensearch-project/OpenSearch' path: OpenSearch - ref: '1.0' + ref: 1.0.0-rc1 - name: Build OpenSearch working-directory: ./OpenSearch run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=rc1 -Dbuild.snapshot=false @@ -42,7 +42,7 @@ jobs: - name: Checkout common-utils uses: actions/checkout@v2 with: - ref: 'main' # TODO: update to the right branch name once it's ready. e.g. 1.x + ref: '1.0.0.0-rc1' # TODO: update to the right branch name once it's ready. e.g. 1.x repository: 'opensearch-project/common-utils' path: common-utils - name: Build common-utils @@ -53,7 +53,7 @@ jobs: - name: Checkout job-scheduler uses: actions/checkout@v2 with: - ref: 'main' # TODO: update to the right branch name once it's ready. e.g. 1.x + ref: '1.0.0.0-rc1' # TODO: update to the right branch name once it's ready. e.g. 1.x repository: 'opensearch-project/job-scheduler' path: job-scheduler @@ -92,7 +92,7 @@ jobs: ## plugin_version=`echo $plugin|awk -F- '{print $4}'| cut -d. -f 1-4` ## TODO: remove these two hard code versions below after GA release version=1.0.0-rc1 - plugin_version=1.0.0.0-rc1 + plugin_version=1.0.0.0 echo $version cd .. if docker pull opensearchstaging/opensearch:$version diff --git a/build.gradle b/build.gradle index 6de225401..0a01c30d1 100644 --- a/build.gradle +++ b/build.gradle @@ -66,7 +66,7 @@ ext { isSnapshot = "true" == System.getProperty("build.snapshot", "true") } -version = "${opensearchVersion}.0-rc1" +version = "${opensearchVersion}.0" apply plugin: 'java' apply plugin: 'idea'