From d611b9d8571e5c32d4183a9254b38e18ba281bda Mon Sep 17 00:00:00 2001 From: edouard Date: Fri, 14 Jan 2022 11:07:47 +0100 Subject: [PATCH] v0.3.1 --- README.md | 5 ++++- main.go | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c89fc10..1a1afe2 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/main.go b/main.go index a28856e..771b52f 100644 --- a/main.go +++ b/main.go @@ -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)