Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release: v0.7.1-alpha #410

Merged
merged 3 commits into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Lightning Terminal is backwards compatible with `lnd` back to version v0.14.3-be

| LiT | LND |
|------------------|--------------|
| **v0.7.1-alpha** | v0.14.3-beta |
| **v0.7.0-alpha** | v0.14.3-beta |
| **v0.6.7-alpha** | v0.13.3-beta |
| **v0.6.6-alpha** | v0.13.3-beta |
Expand Down Expand Up @@ -118,6 +119,7 @@ The following table shows the supported combinations:

| LiT | LND | Loop | Faraday | Pool |
|------------------|--------------|--------------|--------------|--------------|
| **v0.7.1-alpha** | v0.15.0-beta | v0.19.1-beta | v0.2.8-alpha | v0.5.7-alpha |
guggero marked this conversation as resolved.
Show resolved Hide resolved
| **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 |
Expand Down
4 changes: 4 additions & 0 deletions app/src/types/generated/lit-sessions_pb.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 28 additions & 1 deletion app/src/types/generated/lit-sessions_pb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions app/src/util/tests/sampleData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,7 @@ export const litListSessions: LIT.ListSessionsResponse.AsObject = {
remotePublicKey: '',
sessionState: LIT.SessionState.STATE_CREATED,
sessionType: LIT.SessionType.TYPE_UI_PASSWORD,
createdAt: '253300000000',
},
{
devServer: true,
Expand All @@ -876,6 +877,7 @@ export const litListSessions: LIT.ListSessionsResponse.AsObject = {
remotePublicKey: '',
sessionState: LIT.SessionState.STATE_EXPIRED,
sessionType: LIT.SessionType.TYPE_UI_PASSWORD,
createdAt: '253300000000',
},
],
};
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 0
appMinor uint = 7
appPatch uint = 0
appPatch uint = 1

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