Skip to content

Commit

Permalink
Merge pull request #384 from lightninglabs/next-release
Browse files Browse the repository at this point in the history
New release: v0.7.0-alpha
  • Loading branch information
guggero authored Jun 27, 2022
2 parents 1edfc43 + c119161 commit f9f1fe1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ If you’d prefer to compile from source code please follow [these instructions]

## Compatibility

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

| LiT | LND |
|------------------| ------------ |
|------------------|--------------|
| **v0.7.0-alpha** | v0.14.3-beta |
| **v0.6.7-alpha** | v0.13.3-beta |
| **v0.6.6-alpha** | v0.13.3-beta |
| **v0.6.5-alpha** | v0.13.3-beta |
Expand Down Expand Up @@ -116,7 +117,8 @@ The following table shows the supported combinations:
## Daemon Versions packaged with LiT

| LiT | LND | Loop | Faraday | Pool |
|------------------|--------------|--------------| ------------ |--------------|
|------------------|--------------|--------------|--------------|--------------|
| **v0.7.0-alpha** | v0.15.0-beta | v0.19.1-beta | v0.2.8-alpha | v0.5.7-alpha |
| **v0.6.7-alpha** | v0.14.3-beta | v0.18.0-beta | v0.2.7-alpha | v0.5.6-alpha |
| **v0.6.6-alpha** | v0.14.3-beta | v0.18.0-beta | v0.2.7-alpha | v0.5.6-alpha |
| **v0.6.5-alpha** | v0.14.2-beta | v0.15.1-beta | v0.2.7-alpha | v0.5.5-alpha |
Expand Down
2 changes: 1 addition & 1 deletion terminal.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var (
// to run LiT in remote mode.
minimalCompatibleVersion = &verrpc.Version{
AppMajor: 0,
AppMinor: 13,
AppMinor: 14,
AppPatch: 3,
BuildTags: []string{
"signrpc", "walletrpc", "chainrpc", "invoicesrpc",
Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
// versioning 2.0.0 spec (http://semver.org/).
const (
appMajor uint = 0
appMinor uint = 6
appPatch uint = 7
appMinor uint = 7
appPatch uint = 0

// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.
Expand Down

0 comments on commit f9f1fe1

Please sign in to comment.