Skip to content
This repository was archived by the owner on Apr 27, 2023. It is now read-only.

Commit 26b1b30

Browse files
committed
release v1.1.0
1 parent ebdd328 commit 26b1b30

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/workflows/release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,13 @@ jobs:
118118
119119
- name: Lint plugin
120120
run: |
121+
export PATH="$(go env GOPATH)/bin/:$PATH"
122+
121123
git clone https://github.com/grafana/plugin-validator
122-
pushd ./plugin-validator/cmd/plugincheck
124+
pushd ./plugin-validator/pkg/cmd/plugincheck2
123125
go install
124126
popd
125-
plugincheck ${{ steps.metadata.outputs.archive }}
127+
plugincheck2 -config lint.config.yaml ${{ steps.metadata.outputs.archive }}
126128
127129
- name: Create release
128130
id: create_release

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.1.0
4+
* Support template variables
5+
36
## 1.0.0 (Unreleased)
47

58
Initial release.

lint.config.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
global:
2+
enabled: true
3+
severity: error
4+
jsonOutput: false
5+
6+
analyzers:
7+
screenshots:
8+
rules:
9+
screenshots:
10+
# TODO publish screenshots?
11+
enabled: false
12+
13+
pluginname:
14+
rules:
15+
# TODO update our name?
16+
human-friendly-name:
17+
enabled: false

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pyroscope-pyroscope-data-source-plugin",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Flamegraph data provider",
55
"scripts": {
66
"build": "grafana-toolkit plugin:build",
@@ -10,7 +10,7 @@
1010
"sign": "grafana-toolkit plugin:sign",
1111
"start": "yarn watch"
1212
},
13-
"author": "Mike Egorov",
13+
"author": "Pyroscope devs",
1414
"license": "Apache-2.0",
1515
"devDependencies": {
1616
"@grafana/data": "latest",

0 commit comments

Comments
 (0)