Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add /v2 path component to module name. #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example_object_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package goque_test
import (
"fmt"

"github.com/beeker1121/goque"
"github.com/beeker1121/goque/v2"
)

// ExampleObject demonstrates enqueuing a struct object.
Expand Down
2 changes: 1 addition & 1 deletion example_prefix_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package goque_test
import (
"fmt"

"github.com/beeker1121/goque"
"github.com/beeker1121/goque/v2"
)

// ExamplePrefixQueue demonstrates the implementation of a Goque queue.
Expand Down
2 changes: 1 addition & 1 deletion example_priority_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package goque_test
import (
"fmt"

"github.com/beeker1121/goque"
"github.com/beeker1121/goque/v2"
)

// ExamplePriorityQueue demonstrates the implementation of a Goque queue.
Expand Down
2 changes: 1 addition & 1 deletion example_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package goque_test
import (
"fmt"

"github.com/beeker1121/goque"
"github.com/beeker1121/goque/v2"
)

// ExampleQueue demonstrates the implementation of a Goque queue.
Expand Down
2 changes: 1 addition & 1 deletion example_stack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package goque_test
import (
"fmt"

"github.com/beeker1121/goque"
"github.com/beeker1121/goque/v2"
)

// ExampleStack demonstrates the implementation of a Goque stack.
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/beeker1121/goque
module github.com/beeker1121/goque/v2

go 1.13

Expand Down