Skip to content

Commit

Permalink
fix: module path should reflect v2 release (#40)
Browse files Browse the repository at this point in the history
* fix: module path should reflect v2 release
* update: mod refs to v2
  • Loading branch information
MadsRC authored Dec 12, 2024
1 parent 466ab92 commit 7ac1530
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ package main

import (
"fmt"
"github.com/plar/go-adaptive-radix-tree"
"github.com/plar/go-adaptive-radix-tree/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
// import (
// "fmt"
// "github.com/plar/go-adaptive-radix-tree"
// "github.com/plar/go-adaptive-radix-tree/v2"
// )
//
// func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/gtree/gtree.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"fmt"

art "github.com/plar/go-adaptive-radix-tree"
art "github.com/plar/go-adaptive-radix-tree/v2"
)

// GTree is a generic tree that supports any type for keys and values.
Expand Down
2 changes: 1 addition & 1 deletion examples/gtree/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

art "github.com/plar/go-adaptive-radix-tree"
art "github.com/plar/go-adaptive-radix-tree/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

art "github.com/plar/go-adaptive-radix-tree"
art "github.com/plar/go-adaptive-radix-tree/v2"
)

func DumpTree() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/plar/go-adaptive-radix-tree
module github.com/plar/go-adaptive-radix-tree/v2

go 1.18

Expand Down

0 comments on commit 7ac1530

Please sign in to comment.