diff --git a/sdk/go/go.mod b/sdk/go/go.mod index 4bbcb1332a..3cbbf1432f 100644 --- a/sdk/go/go.mod +++ b/sdk/go/go.mod @@ -1,4 +1,4 @@ -module github.com/fermyon/spin/sdk/go +module github.com/fermyon/spin/sdk/go/v2 go 1.20 diff --git a/sdk/go/mysql/mysql.go b/sdk/go/mysql/mysql.go index 0fe87a4488..33a2c60e7b 100644 --- a/sdk/go/mysql/mysql.go +++ b/sdk/go/mysql/mysql.go @@ -8,7 +8,7 @@ import ( "io" "reflect" - spindb "github.com/fermyon/spin/sdk/go/internal/db" + spindb "github.com/fermyon/spin/sdk/go/v2/internal/db" ) // Open returns a new connection to the database. diff --git a/sdk/go/pg/pg.go b/sdk/go/pg/pg.go index 0c7fbf58d2..db7c859e5e 100644 --- a/sdk/go/pg/pg.go +++ b/sdk/go/pg/pg.go @@ -8,7 +8,7 @@ import ( "io" "reflect" - spindb "github.com/fermyon/spin/sdk/go/internal/db" + spindb "github.com/fermyon/spin/sdk/go/v2/internal/db" ) // Open returns a new connection to the database. diff --git a/sdk/go/sqlite/sqlite.go b/sdk/go/sqlite/sqlite.go index 6684d464cf..b4778e53e9 100644 --- a/sdk/go/sqlite/sqlite.go +++ b/sdk/go/sqlite/sqlite.go @@ -7,7 +7,7 @@ import ( "errors" "io" - spindb "github.com/fermyon/spin/sdk/go/internal/db" + spindb "github.com/fermyon/spin/sdk/go/v2/internal/db" ) // Open returns a new connection to the database.