Skip to content

Commit

Permalink
Bump plugin version to 1.0.0.0 (#110)
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Ohlsen <ohltyler@amazon.com>
  • Loading branch information
ohltyler committed Jun 30, 2021
1 parent f4ed685 commit 73a666a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 73a666a

Please sign in to comment.