Skip to content

Commit

Permalink
Start /v2
Browse files Browse the repository at this point in the history
Update go.mod and all files
  • Loading branch information
Sean-Der committed Nov 30, 2022
1 parent 452b133 commit b08a509
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/vnet-udpproxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/pion/logging"
"github.com/pion/transport/vnet"
"github.com/pion/transport/v2/vnet"
)

func main() {
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
module github.com/pion/transport
module github.com/pion/transport/v2

go 1.12

retract v0.14.0

require (
github.com/pion/logging v0.2.2
github.com/stretchr/testify v1.7.1
Expand Down
2 changes: 1 addition & 1 deletion packetio/buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

"github.com/pion/transport/deadline"
"github.com/pion/transport/v2/deadline"
)

var errPacketTooBig = errors.New("packet too big")
Expand Down
2 changes: 1 addition & 1 deletion test/bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"
"time"

"github.com/pion/transport/deadline"
"github.com/pion/transport/v2/deadline"
)

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

"github.com/pion/transport/connctx"
"github.com/pion/transport/v2/connctx"
)

var errByteSequenceChanged = errors.New("byte sequence changed")
Expand Down
2 changes: 1 addition & 1 deletion vnet/stress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/pion/logging"
"github.com/pion/transport/test"
"github.com/pion/transport/v2/test"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit b08a509

Please sign in to comment.