Skip to content

Commit 7cf5ebe

Browse files
committed
lnd+cmd/lncli: bump version to 0.4.2
1 parent 1d7ff42 commit 7cf5ebe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/lncli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func getClientConn(ctx *cli.Context, skipMacaroons bool) *grpc.ClientConn {
154154
func main() {
155155
app := cli.NewApp()
156156
app.Name = "lncli"
157-
app.Version = fmt.Sprintf("%s commit=%s", "0.4.1", Commit)
157+
app.Version = fmt.Sprintf("%s commit=%s", "0.4.2", Commit)
158158
app.Usage = "control plane for your Lightning Network Daemon (lnd)"
159159
app.Flags = []cli.Flag{
160160
cli.StringFlag{

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
1919
const (
2020
appMajor uint = 0
2121
appMinor uint = 4
22-
appPatch uint = 1
22+
appPatch uint = 2
2323

2424
// appPreRelease MUST only contain characters from semanticAlphabet
2525
// per the semantic versioning spec.

0 commit comments

Comments
 (0)