Skip to content

Commit f9f1fe1

Browse files
authored
Merge pull request #384 from lightninglabs/next-release
New release: v0.7.0-alpha
2 parents 1edfc43 + c119161 commit f9f1fe1

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,11 @@ If you’d prefer to compile from source code please follow [these instructions]
6666

6767
## Compatibility
6868

69-
Lightning Terminal is backwards compatible with `lnd` back to version v0.13.3-beta.
69+
Lightning Terminal is backwards compatible with `lnd` back to version v0.14.3-beta.
7070

7171
| LiT | LND |
72-
|------------------| ------------ |
72+
|------------------|--------------|
73+
| **v0.7.0-alpha** | v0.14.3-beta |
7374
| **v0.6.7-alpha** | v0.13.3-beta |
7475
| **v0.6.6-alpha** | v0.13.3-beta |
7576
| **v0.6.5-alpha** | v0.13.3-beta |
@@ -116,7 +117,8 @@ The following table shows the supported combinations:
116117
## Daemon Versions packaged with LiT
117118

118119
| LiT | LND | Loop | Faraday | Pool |
119-
|------------------|--------------|--------------| ------------ |--------------|
120+
|------------------|--------------|--------------|--------------|--------------|
121+
| **v0.7.0-alpha** | v0.15.0-beta | v0.19.1-beta | v0.2.8-alpha | v0.5.7-alpha |
120122
| **v0.6.7-alpha** | v0.14.3-beta | v0.18.0-beta | v0.2.7-alpha | v0.5.6-alpha |
121123
| **v0.6.6-alpha** | v0.14.3-beta | v0.18.0-beta | v0.2.7-alpha | v0.5.6-alpha |
122124
| **v0.6.5-alpha** | v0.14.2-beta | v0.15.1-beta | v0.2.7-alpha | v0.5.5-alpha |

terminal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ var (
120120
// to run LiT in remote mode.
121121
minimalCompatibleVersion = &verrpc.Version{
122122
AppMajor: 0,
123-
AppMinor: 13,
123+
AppMinor: 14,
124124
AppPatch: 3,
125125
BuildTags: []string{
126126
"signrpc", "walletrpc", "chainrpc", "invoicesrpc",

version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
2222
// versioning 2.0.0 spec (http://semver.org/).
2323
const (
2424
appMajor uint = 0
25-
appMinor uint = 6
26-
appPatch uint = 7
25+
appMinor uint = 7
26+
appPatch uint = 0
2727

2828
// appPreRelease MUST only contain characters from semanticAlphabet per
2929
// the semantic versioning spec.

0 commit comments

Comments
 (0)