diff --git a/cmd/lncli/main.go b/cmd/lncli/main.go index d6bb7cc4..40eb686a 100644 --- a/cmd/lncli/main.go +++ b/cmd/lncli/main.go @@ -154,7 +154,7 @@ func getClientConn(ctx *cli.Context, skipMacaroons bool) *grpc.ClientConn { func main() { app := cli.NewApp() app.Name = "lncli" - app.Version = fmt.Sprintf("%s commit=%s", "0.4", Commit) + app.Version = fmt.Sprintf("%s commit=%s", "0.4.1", Commit) app.Usage = "control plane for your Lightning Network Daemon (lnd)" app.Flags = []cli.Flag{ cli.StringFlag{ diff --git a/version.go b/version.go index 77030ec6..f56b2dbf 100644 --- a/version.go +++ b/version.go @@ -19,7 +19,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 4 - appPatch uint = 0 + appPatch uint = 1 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.