Skip to content

Commit

Permalink
inital prep for v3.
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Lloyd <[email protected]>
  • Loading branch information
Mike Lloyd committed Nov 4, 2020
1 parent 92a824f commit 4f62c6f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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/allegro/bigcache/v2
module github.com/allegro/bigcache/v3

go 1.12
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"strconv"

"github.com/allegro/bigcache/v2"
"github.com/allegro/bigcache/v3"
)

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

"github.com/allegro/bigcache/v2"
"github.com/allegro/bigcache/v3"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion shard.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"sync/atomic"

"github.com/allegro/bigcache/v2/queue"
"github.com/allegro/bigcache/v3/queue"
)

type onRemoveCallback func(wrappedEntry []byte, reason RemoveReason)
Expand Down

0 comments on commit 4f62c6f

Please sign in to comment.