Release v3 - change v2 suffix to v3

Because of recent changes there is a need for a new major
release. Changes are switching to scylladb/gocql and replacing
Unsafe with Strict mechanism.
This commit is contained in:
sylwiaszunejko
2024-07-10 07:49:07 +02:00
committed by Sylwia Szunejko
parent 653faf1e03
commit e7267922c4
29 changed files with 67 additions and 65 deletions

View File

@@ -5,8 +5,8 @@
package dbutil
import (
"github.com/scylladb/gocqlx/v2"
"github.com/scylladb/gocqlx/v2/table"
"github.com/scylladb/gocqlx/v3"
"github.com/scylladb/gocqlx/v3/table"
)
// RewriteTable rewrites src table to dst table.

View File

@@ -11,10 +11,10 @@ import (
"testing"
"time"
"github.com/scylladb/gocqlx/v2/dbutil"
"github.com/scylladb/gocqlx/v2/gocqlxtest"
"github.com/scylladb/gocqlx/v2/qb"
"github.com/scylladb/gocqlx/v2/table"
"github.com/scylladb/gocqlx/v3/dbutil"
"github.com/scylladb/gocqlx/v3/gocqlxtest"
"github.com/scylladb/gocqlx/v3/qb"
"github.com/scylladb/gocqlx/v3/table"
)
func TestRewriteTableTTL(t *testing.T) {