Fixing go.mod v2 version by emarj · Pull Request #46 · blockloop/scan · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
2 changes: 1 addition & 1 deletion bench_scanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package scan_test
import (
"testing"

"github.com/blockloop/scan"
"github.com/blockloop/scan/v2"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion example_scanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"math/rand"
"os"

"github.com/blockloop/scan"
"github.com/blockloop/scan/v2"
_ "github.com/proullon/ramsql/driver"
)

Expand Down
2 changes: 1 addition & 1 deletion examples_values_columns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package scan_test
import (
"fmt"

"github.com/blockloop/scan"
"github.com/blockloop/scan/v2"
)

func ExampleValues() {
Expand Down
2 changes: 1 addition & 1 deletion fakes_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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/blockloop/scan
module github.com/blockloop/scan/v2

go 1.17

Expand Down
3 changes: 2 additions & 1 deletion scanner_test.go