diff --git a/bench/bench_test.go b/bench/bench_test.go index 547462e..113c31f 100644 --- a/bench/bench_test.go +++ b/bench/bench_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - ttlcache "github.com/ReneKroon/ttlcache/v2" + ttlcache "github.com/ReneKroon/ttlcache/v3" ) func BenchmarkCacheSetWithoutTTL(b *testing.B) { diff --git a/cache_test.go b/cache_test.go index 3e89988..1024df6 100644 --- a/cache_test.go +++ b/cache_test.go @@ -12,7 +12,7 @@ import ( "fmt" "sync" - . "github.com/ReneKroon/ttlcache/v2" + . "github.com/ReneKroon/ttlcache/v3" "github.com/stretchr/testify/assert" ) diff --git a/go.mod b/go.mod index c3944db..289e9f3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ReneKroon/ttlcache/v2 +module github.com/ReneKroon/ttlcache/v3 go 1.18