Skip to content

Commit

Permalink
Update version in package name (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
puzpuzpuz authored Oct 26, 2022
1 parent cdef836 commit 1482f1b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion counter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync/atomic"
"testing"

. "github.com/puzpuzpuz/xsync"
. "github.com/puzpuzpuz/xsync/v2"
)

func TestCounterInc(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"hash/maphash"
"time"

"github.com/puzpuzpuz/xsync"
"github.com/puzpuzpuz/xsync/v2"
)

func ExampleNewTypedMapOf() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/puzpuzpuz/xsync
module github.com/puzpuzpuz/xsync/v2

go 1.18
2 changes: 1 addition & 1 deletion map_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"time"
"unsafe"

. "github.com/puzpuzpuz/xsync"
. "github.com/puzpuzpuz/xsync/v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion mapof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"testing"
"time"

. "github.com/puzpuzpuz/xsync"
. "github.com/puzpuzpuz/xsync/v2"
)

func TestMapOf_UniqueValuePointers_Int(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion mpmcqueue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

. "github.com/puzpuzpuz/xsync"
. "github.com/puzpuzpuz/xsync/v2"
)

func TestQueue_InvalidSize(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion rbmutex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync/atomic"
"testing"

. "github.com/puzpuzpuz/xsync"
. "github.com/puzpuzpuz/xsync/v2"
)

func TestRBMutexSerialReader(t *testing.T) {
Expand Down

0 comments on commit 1482f1b

Please sign in to comment.