Skip to content

Commit 5c83ebd

Browse files
authored
Bump REL v0.30.0 (#13)
1 parent cb0de8d commit 5c83ebd

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/go-rel/sqlite3
33
go 1.16
44

55
require (
6-
github.com/go-rel/rel v0.29.2
7-
github.com/go-rel/sql v0.6.0
6+
github.com/go-rel/rel v0.30.0
7+
github.com/go-rel/sql v0.7.0
88
github.com/mattn/go-sqlite3 v1.14.9
99
github.com/stretchr/testify v1.7.0
1010
)

go.sum

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMo
55
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
66
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
77
github.com/go-rel/rel v0.28.0/go.mod h1:zaIYPmM3AfJrh0xBmm7KoVKRgTNvr0cgZfcJ88gVA2U=
8-
github.com/go-rel/rel v0.29.0/go.mod h1:RiTs/9DBCiSZvVRin8mXMXBeXIuJ5JpQThccwtrdqfc=
9-
github.com/go-rel/rel v0.29.2 h1:YeQiGSjK3fPZZOjxktGudv6t8g3EbrUHJ6jLUhq7sc4=
10-
github.com/go-rel/rel v0.29.2/go.mod h1:RiTs/9DBCiSZvVRin8mXMXBeXIuJ5JpQThccwtrdqfc=
8+
github.com/go-rel/rel v0.30.0 h1:cROr0KQx1WJCx+LGEs885yxt2UsO54vOQcgsXoeGTPk=
9+
github.com/go-rel/rel v0.30.0/go.mod h1:Wu6HB6x0oIiEOdUJClwmn7ByCmdL73U5gItAYObyyuo=
1110
github.com/go-rel/reltest v0.4.0 h1:Z/x9FXZ8yDdrU2MuzPpt7FUIptSEV1pnmSKxSlcUhtM=
1211
github.com/go-rel/reltest v0.4.0/go.mod h1:3udgrKCZGCMFWc8k+RH975gUdUFPE/yspG2iWN9gjqU=
13-
github.com/go-rel/sql v0.6.0 h1:QNzZmZ+ATrQi4YkepKP96KNabYHHLZenA/5k+3sNlW8=
14-
github.com/go-rel/sql v0.6.0/go.mod h1:HDDtkakv+O3YKxtXj4g2DrtUVZPAZao/MoUmD5j7JTk=
12+
github.com/go-rel/sql v0.7.0 h1:1R21uULYCdZqh4//67lYNR9z9IFmBOCkpFSqDajidVs=
13+
github.com/go-rel/sql v0.7.0/go.mod h1:8qOQjO+XZ96kcPQ/UzSr1ZF/2JUHM5lygLTGXqVN2x0=
1514
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
1615
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
1716
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=

sqlite3_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77

88
"github.com/go-rel/rel"
9-
"github.com/go-rel/rel/adapter/specs"
9+
"github.com/go-rel/sql/specs"
1010
_ "github.com/mattn/go-sqlite3"
1111
"github.com/stretchr/testify/assert"
1212
)
@@ -29,11 +29,11 @@ func TestAdapter_specs(t *testing.T) {
2929
repo := rel.New(adapter)
3030

3131
// Prepare tables
32-
teardown := specs.Setup(t, repo)
32+
teardown := specs.Setup(repo)
3333
defer teardown()
3434

3535
// Migration Specs
36-
specs.Migrate(t, repo, specs.SkipDropColumn)
36+
specs.Migrate(specs.SkipDropColumn)
3737

3838
// Query Specs
3939
specs.Query(t, repo)

0 commit comments

Comments
 (0)