Skip to content

Commit

Permalink
Release 0.3.0 (#34)
Browse files Browse the repository at this point in the history
* create github release only for new releases

* Prepare release v0.3.0
  • Loading branch information
kevinwcyu authored Oct 31, 2024
1 parent 5ab4627 commit e853575
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.version_check.outputs.version }}
version_changed: ${{ steps.version_check.outputs.changed }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -65,6 +66,7 @@ jobs:
name: Create GitHub Release
runs-on: ubuntu-latest
needs: npm-publish
if: needs.npm-publish.outputs.version_changed == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## v0.3.0

- Chore: update deps in https://github.com/grafana/grafana-async-query-data-js/pull/31

## v0.2.0

- Remove athenaAsyncQueryDataSupport and redshiftAsyncQueryData feature toggle-related code
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grafana/async-query-data",
"version": "0.2.0",
"version": "0.3.0",
"description": "Async query support for Grafana",
"main": "dist/index.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit e853575

Please sign in to comment.