From 8d8ea86c0610f586ec037ecb43657e36dc8b0474 Mon Sep 17 00:00:00 2001 From: Yue Yang Date: Tue, 19 Dec 2023 11:01:11 +0800 Subject: [PATCH] chore: prepare v3 release Signed-off-by: Yue Yang --- CHANGELOG.md | 2 +- README.md | 2 +- bundle.sh | 20 -------------------- 3 files changed, 2 insertions(+), 22 deletions(-) delete mode 100755 bundle.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b4dfa3..b6a272e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,5 +65,5 @@ Ready for submission to grafana official plugins repository. 🥰 ### Added - Displaying Chaos events in a table visualization -- Support [variables](https://grafana.com/docs/grafana/latest/variables/) to filter Chaos events +- Support [Variables](https://grafana.com/docs/grafana/latest/variables/) to filter Chaos events - Support [Annotations](https://grafana.com/docs/grafana/latest/dashboards/annotations/) to annotate Chaos events on the panel diff --git a/README.md b/README.md index d49e266..368ca26 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Grafana data source plugin for Chaos Mesh. ## Features - Displaying Chaos events in a table visualization -- Support [variables](https://grafana.com/docs/grafana/latest/variables/) to filter Chaos events +- Support [Variables](https://grafana.com/docs/grafana/latest/variables/) to filter Chaos events - Support [Annotations](https://grafana.com/docs/grafana/latest/dashboards/annotations/) to annotate Chaos events on the panel ## Install diff --git a/bundle.sh b/bundle.sh deleted file mode 100755 index 89ced01..0000000 --- a/bundle.sh +++ /dev/null @@ -1,20 +0,0 @@ -VERSION=$1 -ID=chaosmeshorg-datasource - -rm -rf dist -rm -rf $ID - -echo "Bundled Version: $VERSION" -echo "Start to build..." -echo - -yarn build -yarn sign - -echo "Bundling..." - -mkdir $ID && cp -R dist/* $ID -zip -r $ID-$VERSION.zip $ID -x "*.DS_Store*" -md5sum $ID-$VERSION.zip > $ID-$VERSION.zip.md5 - -echo "Done."