Skip to content

Commit

Permalink
Bump version to 1.2.0 for OpenSearch and OpenSearch Dashboards.
Browse files Browse the repository at this point in the history
Related issue:
opensearch-project#81

Signed-off-by: Kawika Avilla <[email protected]>
  • Loading branch information
kavilla committed Oct 29, 2021
1 parent 90c94c4 commit 86f3623
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [pull_request, push]
env:
PLUGIN_NAME: notebooks-dashboards
OPENSEARCH_DASHBOARDS_VERSION: '1.x'
OPENSEARCH_PLUGIN_VERSION: 1.1.0.0
OPENSEARCH_PLUGIN_VERSION: 1.2.0.0

jobs:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Test and Build OpenSearch Notebooks Backend Plugin
on: [push, pull_request]

env:
OPENSEARCH_VERSION: '1.1.0-SNAPSHOT'
OPENSEARCH_BRANCH: '1.1'
OPENSEARCH_VERSION: '1.2.0-SNAPSHOT'
OPENSEARCH_BRANCH: '1.x'
COMMON_UTILS_BRANCH: 'main'

jobs:
Expand Down
4 changes: 2 additions & 2 deletions dashboards-notebooks/opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "notebooksDashboards",
"version": "1.1.0.0",
"opensearchDashboardsVersion": "1.1.0",
"version": "1.2.0.0",
"opensearchDashboardsVersion": "1.2.0",
"server": true,
"ui": true,
"requiredPlugins": ["navigation", "embeddable", "dashboard"],
Expand Down
4 changes: 2 additions & 2 deletions dashboards-notebooks/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "notebooks-dashboards",
"version": "1.1.0.0",
"version": "1.2.0.0",
"description": "OpenSearch Dashboards Notebooks",
"main": "index.ts",
"license": "Apache-2.0",
"opensearchDashboards": {
"version": "1.1.0",
"version": "1.2.0",
"templateVersion": "1.0.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion opensearch-notebooks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import java.util.concurrent.Callable

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "1.1.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "1.2.0-SNAPSHOT")
// 1.0.0 -> 1.0.0.0, and 1.0.0-SNAPSHOT -> 1.0.0.0-SNAPSHOT
opensearch_build = opensearch_version.replaceAll(/(\.\d)([^\d]*)$/, '$1.0$2')
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
Expand Down

0 comments on commit 86f3623

Please sign in to comment.