Skip to content

Commit

Permalink
Bump major version to v3 and add module compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
pin committed Jul 21, 2022
1 parent 7416eb4 commit 6a8515c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Partially implements (tsize server side only):
Set of features is sufficient for PXE boot support.

``` go
import "github.com/pin/tftp"
import "github.com/pin/tftp/v3"
```

The package is cohesive to Golang `io`. Particularly it implements
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/pin/tftp
module github.com/pin/tftp/v3

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion receiver.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"time"

"github.com/pin/tftp/netascii"
"github.com/pin/tftp/v3/netascii"
)

// IncomingTransfer provides methods that expose information associated with
Expand Down
2 changes: 1 addition & 1 deletion sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"time"

"github.com/pin/tftp/netascii"
"github.com/pin/tftp/v3/netascii"
)

// OutgoingTransfer provides methods to set the outgoing transfer size and
Expand Down

0 comments on commit 6a8515c

Please sign in to comment.