Skip to content

Commit

Permalink
Incremented version to 2.0.1 (#465)
Browse files Browse the repository at this point in the history
Signed-off-by: Zelin Hao <[email protected]>
  • Loading branch information
zelinh authored Jun 9, 2022
1 parent daaace4 commit f780bbd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
4 changes: 2 additions & 2 deletions dashboards-notifications/opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
4 changes: 2 additions & 2 deletions dashboards-notifications/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions notifications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit f780bbd

Please sign in to comment.