Skip to content

Commit e853575

Browse files
authored
Release 0.3.0 (#34)
* create github release only for new releases * Prepare release v0.3.0
1 parent 5ab4627 commit e853575

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
outputs:
1212
new_version: ${{ steps.version_check.outputs.version }}
13+
version_changed: ${{ steps.version_check.outputs.changed }}
1314
steps:
1415
- name: Checkout repository
1516
uses: actions/checkout@v2
@@ -65,6 +66,7 @@ jobs:
6566
name: Create GitHub Release
6667
runs-on: ubuntu-latest
6768
needs: npm-publish
69+
if: needs.npm-publish.outputs.version_changed == 'true'
6870
steps:
6971
- name: Checkout code
7072
uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## v0.3.0
6+
7+
- Chore: update deps in https://github.com/grafana/grafana-async-query-data-js/pull/31
8+
59
## v0.2.0
610

711
- Remove athenaAsyncQueryDataSupport and redshiftAsyncQueryData feature toggle-related code

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/async-query-data",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Async query support for Grafana",
55
"main": "dist/index.js",
66
"module": "dist/esm/index.js",

0 commit comments

Comments
 (0)