Skip to content

Commit 73af09a

Browse files
committed
lnd+cmd/lncli: bump version to 0.5-beta
1 parent f1256ba commit 73af09a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/lncli/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ func extractPathArgs(ctx *cli.Context) (string, string, error) {
205205
func main() {
206206
app := cli.NewApp()
207207
app.Name = "lncli"
208-
app.Version = fmt.Sprintf("%s commit=%s", "0.4.2", Commit)
208+
app.Version = fmt.Sprintf("%s commit=%s", "0.5", Commit)
209209
app.Usage = "control plane for your Lightning Network Daemon (lnd)"
210210
app.Flags = []cli.Flag{
211211
cli.StringFlag{

version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
1818
// versioning 2.0.0 spec (http://semver.org/).
1919
const (
2020
appMajor uint = 0
21-
appMinor uint = 4
22-
appPatch uint = 2
21+
appMinor uint = 5
22+
appPatch uint = 0
2323

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

0 commit comments

Comments
 (0)