Skip to content

Commit

Permalink
Bump version to 1.1.0.0 (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
cliu123 authored Sep 9, 2021
1 parent 1bfc13b commit e867e91
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
with:
repository: 'opensearch-project/OpenSearch'
path: OpenSearch
ref: '1.0'
ref: '1.x'

- name: Build OpenSearch
working-directory: ./OpenSearch
run: ./gradlew publishToMavenLocal -Dbuild.snapshot=false
run: ./gradlew publishToMavenLocal

- name: Checkout security
uses: actions/checkout@v2
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Download OpenSearch Core
run: |
wget https://artifacts.opensearch.org/snapshots/core/opensearch/1.0.0/opensearch-1.0.0-SNAPSHOT-linux-x64-latest.tar.gz
wget https://artifacts.opensearch.org/snapshots/core/opensearch/1.1.0-SNAPSHOT/opensearch-min-1.1.0-SNAPSHOT-linux-x64-latest.tar.gz
tar -xzf opensearch-*.tar.gz
- name: Run OpenSearch with plugin
Expand All @@ -66,7 +66,7 @@ jobs:
docker build -t opensearch-test:latest -f- . <<EOF
FROM ubuntu:latest
COPY --chown=1001:1001 os-ep.sh /docker-host/
COPY --chown=1001:1001 security/target/releases/opensearch-security-1.0.1.0.zip /docker-host/security-plugin.zip
COPY --chown=1001:1001 security/target/releases/opensearch-security-1.1.0.0-SNAPSHOT.zip /docker-host/security-plugin.zip
COPY --chown=1001:1001 opensearch* /opensearch/
RUN chmod +x /docker-host/os-ep.sh
RUN useradd -u 1001 -s /sbin/nologin opensearch
Expand All @@ -81,7 +81,7 @@ jobs:
with:
path: OpenSearch-Dashboards
repository: opensearch-project/OpenSearch-Dashboards
ref: '1.0'
ref: '1.1'
fetch-depth: 0

- name: Create plugins dir
Expand Down
4 changes: 2 additions & 2 deletions opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "securityDashboards",
"version": "1.0.1.0",
"opensearchDashboardsVersion": "1.0.0",
"version": "1.1.0.0",
"opensearchDashboardsVersion": "1.1.0",
"configPath": ["opensearch_security"],
"requiredPlugins": ["navigation"],
"server": true,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "opensearch-security-dashboards",
"version": "1.0.1.0",
"version": "1.1.0.0",
"main": "target/plugins/opensearch_security_dashboards",
"opensearchDashboards": {
"version": "1.0.0",
"templateVersion": "1.0.0"
"version": "1.1.0",
"templateVersion": "1.1.0"
},
"license": "Apache-2.0",
"homepage": "https://github.com/opensearch-project/security-dashboards-plugin",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Version 1.1.0.0

### Maintenance
* Bump version to 1.1.0.0 ([#823](https://github.com/opensearch-project/security-dashboards-plugin/pull/823))

0 comments on commit e867e91

Please sign in to comment.