Skip to content

Commit e147223

Browse files
authored
Release v4.0.0 (#126)
1 parent b0228d8 commit e147223

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

dataframe_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88

99
"github.com/grafana/grafana-plugin-sdk-go/backend"
1010
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
11-
"github.com/grafana/sqlds/v3"
12-
"github.com/grafana/sqlds/v3/test"
11+
"github.com/grafana/sqlds/v4"
12+
"github.com/grafana/sqlds/v4/test"
1313
"github.com/stretchr/testify/require"
1414
)
1515

datasource_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88

99
"github.com/grafana/grafana-plugin-sdk-go/backend"
10-
"github.com/grafana/sqlds/v3"
11-
"github.com/grafana/sqlds/v3/test"
10+
"github.com/grafana/sqlds/v4"
11+
"github.com/grafana/sqlds/v4/test"
1212
"github.com/stretchr/testify/assert"
1313
)
1414

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/grafana/sqlds/v3
1+
module github.com/grafana/sqlds/v4
22

33
go 1.21
44

mock/csv/csv_mock.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/grafana/grafana-plugin-sdk-go/backend"
1414
"github.com/grafana/grafana-plugin-sdk-go/data"
1515
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
16-
"github.com/grafana/sqlds/v3"
16+
"github.com/grafana/sqlds/v4"
1717
_ "github.com/mithrandie/csvq-driver"
1818
)
1919

test/driver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212

1313
"github.com/grafana/grafana-plugin-sdk-go/backend"
1414
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
15-
"github.com/grafana/sqlds/v3"
16-
"github.com/grafana/sqlds/v3/mock"
15+
"github.com/grafana/sqlds/v4"
16+
"github.com/grafana/sqlds/v4/mock"
1717
)
1818

1919
var registered = map[string]*SqlHandler{}

0 commit comments

Comments
 (0)