Skip to content

Commit

Permalink
Merge pull request #34 from hoptical/v0.2.0
Browse files Browse the repository at this point in the history
V0.2.0
  • Loading branch information
hoptical authored Jul 26, 2022
2 parents ca5afd6 + 4de9e52 commit 4f48b92
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: actions/setup-go@v2
with:
go-version: "1.18"
go-version: "1.16"

- name: Test backend
if: steps.check-for-backend.outputs.has-backend == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Go environment
uses: actions/setup-go@v2
with:
go-version: "1.18"
go-version: "1.16"

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/exaco/grafana-kafka-datasource
module github.com/hoptical/grafana-kafka-datasource

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion pkg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package main
import (
"os"

"github.com/exaco/grafana-kafka-datasource/pkg/plugin"
"github.com/grafana/grafana-plugin-sdk-go/backend/datasource"
"github.com/grafana/grafana-plugin-sdk-go/backend/log"
"github.com/hoptical/grafana-kafka-datasource/pkg/plugin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/grafana/grafana-plugin-sdk-go/data"
"github.com/grafana/grafana-plugin-sdk-go/live"

"github.com/exaco/grafana-kafka-datasource/pkg/kafka_client"
"github.com/hoptical/grafana-kafka-datasource/pkg/kafka_client"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugin/plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"testing"

"github.com/exaco/grafana-kafka-datasource/pkg/plugin"
"github.com/grafana/grafana-plugin-sdk-go/backend"
"github.com/hoptical/grafana-kafka-datasource/pkg/plugin"
)

func TestQueryData(t *testing.T) {
Expand Down

0 comments on commit 4f48b92

Please sign in to comment.