From 95203371b640c248738aa3e315f1c608f8ba7292 Mon Sep 17 00:00:00 2001
From: Yulong Ruan <ruanyl@amazon.com>
Date: Tue, 18 Feb 2025 09:55:15 +0800
Subject: [PATCH] bump 3.0.0.0-alpha1

Signed-off-by: Yulong Ruan <ruanyl@amazon.com>
---
 .github/workflows/verify-binary-installation.yml | 11 ++++++-----
 opensearch_dashboards.json                       | 15 ++++-----------
 package.json                                     |  2 +-
 3 files changed, 11 insertions(+), 17 deletions(-)

diff --git a/.github/workflows/verify-binary-installation.yml b/.github/workflows/verify-binary-installation.yml
index f09cd49f..0b81dbc5 100644
--- a/.github/workflows/verify-binary-installation.yml
+++ b/.github/workflows/verify-binary-installation.yml
@@ -2,7 +2,7 @@ name: 'Install Dashboards with Plugin via Binary'
 
 on: [push, pull_request]
 env:
-  OPENSEARCH_VERSION: '3.0.0'
+  OPENSEARCH_VERSION: '3.0.0-alpha1'
   CI: 1
   # avoid warnings like "tput: No value for $TERM and no -T specified"
   TERM: xterm
@@ -16,7 +16,7 @@ jobs:
         os: [ubuntu-latest]
         # TODO: add windows support when OSD core is stable on windows
     runs-on: ${{ matrix.os }}
-    steps:  
+    steps:
       - name: Checkout Branch
         uses: actions/checkout@v3
 
@@ -44,12 +44,13 @@ jobs:
           install_zip: true
 
       - name: Start the binary
-        run: | 
+        run: |
           nohup ./bin/opensearch-dashboards &
         working-directory: ${{ steps.setup-dashboards.outputs.dashboards-binary-directory }}
         shell: bash
 
-      - name: Health check 
+      - name: Health check
         run: |
           timeout 300 bash -c 'while [[ "$(curl http://localhost:5601/api/status | jq -r '.status.overall.state')" != "green" ]]; do sleep 5; done'
-        shell: bash
\ No newline at end of file
+        shell: bash
+
diff --git a/opensearch_dashboards.json b/opensearch_dashboards.json
index c46dfb45..fbf78682 100644
--- a/opensearch_dashboards.json
+++ b/opensearch_dashboards.json
@@ -1,6 +1,6 @@
 {
   "id": "assistantDashboards",
-  "version": "3.0.0.0",
+  "version": "3.0.0.0-alpha1",
   "opensearchDashboardsVersion": "3.0.0",
   "server": true,
   "ui": true,
@@ -15,14 +15,7 @@
     "savedObjects",
     "uiActions"
   ],
-  "optionalPlugins": [
-    "dataSource",
-    "dataSourceManagement",
-    "usageCollection",
-    "queryEnhancements"
-  ],
+  "optionalPlugins": ["dataSource", "dataSourceManagement", "usageCollection", "queryEnhancements"],
   "requiredBundles": [],
-  "configPath": [
-    "assistant"
-  ]
-}
\ No newline at end of file
+  "configPath": ["assistant"]
+}
diff --git a/package.json b/package.json
index 556f0029..d65d151b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "assistant-dashboards",
-  "version": "3.0.0.0",
+  "version": "3.0.0.0-alpha1",
   "main": "index.ts",
   "license": "Apache-2.0",
   "scripts": {