Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
edouardparis committed Jan 14, 2022
1 parent 0b4fe71 commit d611b9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ Require the [go programming language](https://golang.org/) (version >= 1.13)

```
git clone https://github.com/edouardparis/lntop.git
cd lntop && go install ./...
cd lntop
go build // creates a binary `lntop` in directory
go install // creates a binary and move it in your $GOBIN path
```

With Go version >= 1.16, you can use [`go-install`](https://golang.org/ref/mod#go-install)
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/edouardparis/lntop/cli"
)

const Version = "v0.3.0"
const Version = "v0.3.1"

func main() {
err := cli.New(Version).Run(os.Args)
Expand Down

0 comments on commit d611b9d

Please sign in to comment.