diff --git a/.github/workflows/dashboards-notifications-test-and-build-workflow.yml b/.github/workflows/dashboards-notifications-test-and-build-workflow.yml index ddc00f01..2202d9c4 100644 --- a/.github/workflows/dashboards-notifications-test-and-build-workflow.yml +++ b/.github/workflows/dashboards-notifications-test-and-build-workflow.yml @@ -10,7 +10,7 @@ on: [pull_request, push] env: PLUGIN_NAME: notifications-dashboards OPENSEARCH_DASHBOARDS_VERSION: 'main' - OPENSEARCH_PLUGIN_VERSION: 2.0.0.0 + OPENSEARCH_PLUGIN_VERSION: 2.0.1.0 jobs: diff --git a/dashboards-notifications/opensearch_dashboards.json b/dashboards-notifications/opensearch_dashboards.json index a1b55acd..69f5b470 100644 --- a/dashboards-notifications/opensearch_dashboards.json +++ b/dashboards-notifications/opensearch_dashboards.json @@ -1,7 +1,7 @@ { "id": "notificationsDashboards", - "version": "2.0.0.0", - "opensearchDashboardsVersion": "2.0.0", + "version": "2.0.1.0", + "opensearchDashboardsVersion": "2.0.1", "requiredPlugins": ["navigation", "data"], "optionalPlugins": ["share"], "server": true, diff --git a/dashboards-notifications/package.json b/dashboards-notifications/package.json index d1651273..09d17272 100644 --- a/dashboards-notifications/package.json +++ b/dashboards-notifications/package.json @@ -1,11 +1,11 @@ { "name": "notifications-dashboards", - "version": "2.0.0.0", + "version": "2.0.1.0", "description": "OpenSearch Dashboards Notifications Plugin", "license": "Apache-2.0", "main": "index.ts", "opensearchDashboards": { - "version": "2.0.0", + "version": "2.0.1", "templateVersion": "1.0.0" }, "scripts": { diff --git a/notifications/build.gradle b/notifications/build.gradle index 973080cc..ef23e44c 100644 --- a/notifications/build.gradle +++ b/notifications/build.gradle @@ -6,10 +6,10 @@ buildscript { ext { - opensearch_version = System.getProperty("opensearch.version", "2.0.0-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "2.0.1-SNAPSHOT") isSnapshot = "true" == System.getProperty("build.snapshot", "true") buildVersionQualifier = System.getProperty("build.version_qualifier", "") - // 2.0.0-SNAPSHOT -> 2.0.0.0-SNAPSHOT + // 2.0.1-SNAPSHOT -> 2.0.1.0-SNAPSHOT version_tokens = opensearch_version.tokenize('-') opensearch_build = version_tokens[0] + '.0' if (buildVersionQualifier) {