Skip to content

Commit 9c6e751

Browse files
authored
Bump to v3 (#102)
* bump to v3 * fix imports * make drone * fix test import
1 parent b1551bb commit 9c6e751

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ steps:
3131

3232
---
3333
kind: signature
34-
hmac: d47f380c64ff9e498c69d2553d1d3a0751671f73e11d83866590fc4485211641
34+
hmac: a87eed3ff4ff31806a1f22daad4f283b9c6b0e4f8a8be84ae611016a7c4ac474
3535

3636
...

datasource_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
"github.com/grafana/grafana-plugin-sdk-go/backend"
1515
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
16-
"github.com/grafana/sqlds/v2/mock"
16+
"github.com/grafana/sqlds/v3/mock"
1717
"github.com/stretchr/testify/assert"
1818
)
1919

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/v2
1+
module github.com/grafana/sqlds/v3
22

33
go 1.20
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/v2"
16+
"github.com/grafana/sqlds/v3"
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
@@ -9,8 +9,8 @@ import (
99
"time"
1010

1111
"github.com/grafana/grafana-plugin-sdk-go/data/sqlutil"
12-
"github.com/grafana/sqlds/v2"
13-
"github.com/grafana/sqlds/v2/mock"
12+
"github.com/grafana/sqlds/v3"
13+
"github.com/grafana/sqlds/v3/mock"
1414
)
1515

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

0 commit comments

Comments
 (0)