Skip to content

Commit

Permalink
go mod v3
Browse files Browse the repository at this point in the history
  • Loading branch information
subchen committed Jan 2, 2021
1 parent 73402d8 commit e60b8d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ go:
- "tip"

before_install:
- go get github.com/mattn/goveralls
- go get -d github.com/mattn/goveralls
- go install github.com/mattn/goveralls

script:
- $GOPATH/bin/goveralls -v -service=travis-ci
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Some applications are built using `go-cli` including:
To install `go-cli`, simply run:

```bash
go get github.com/subchen/go-cli
go get github.com/subchen/go-cli/v3
```

## Syntax for Command Line
Expand Down Expand Up @@ -90,7 +90,7 @@ package main
import (
"fmt"
"os"
"github.com/subchen/go-cli"
"github.com/subchen/go-cli/v3"
)

func main() {
Expand Down Expand Up @@ -359,7 +359,7 @@ import (
"fmt"
"os"
"strings"
"github.com/subchen/go-cli"
"github.com/subchen/go-cli/v3"
)

func main() {
Expand Down
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/subchen/go-cli/v3

go 1.15

0 comments on commit e60b8d5

Please sign in to comment.