Skip to content

Commit

Permalink
Fix module name (#190)
Browse files Browse the repository at this point in the history
Update module name to have "/v3" suffix and update
imports and README accordingly.

Fixes #187
  • Loading branch information
nmiyake authored and mholt committed Nov 14, 2019
1 parent 58e2c14 commit 7598309
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Tar files can optionally be compressed using any of the above compression format
## Install

```bash
go get -u github.com/mholt/archiver/cmd/arc
go get -u github.com/mholt/archiver/v3/cmd/arc
```

Or download binaries from the [releases](https://github.com/mholt/archiver/releases) page.
Expand Down Expand Up @@ -145,7 +145,7 @@ Flags are specified before the subcommand. Use `arc help` or `arc -h` to get usa
The archiver package allows you to easily create and open archives, walk their contents, extract specific files, compress and decompress files, and even stream archives in and out using pure io.Reader and io.Writer interfaces, without ever needing to touch the disk.

```go
import "github.com/mholt/archiver"
import "github.com/mholt/archiver/v3"
```

[See the package's GoDoc](https://godoc.org/github.com/mholt/archiver) for full API documentation.
Expand Down
2 changes: 1 addition & 1 deletion cmd/arc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"path/filepath"
"strings"

"github.com/mholt/archiver"
"github.com/mholt/archiver/v3"
"github.com/nwaples/rardecode"
)

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/mholt/archiver
module github.com/mholt/archiver/v3

go 1.12

Expand Down

0 comments on commit 7598309

Please sign in to comment.