Skip to content

Commit

Permalink
Merge pull request #885 from ViktorTigerstrom/2024-10-litd-v0_13_5
Browse files Browse the repository at this point in the history
Bump `litd` to version `v0.13.5-alpha`
  • Loading branch information
ViktorTigerstrom authored Oct 25, 2024
2 parents 9e5685f + d72a2ce commit 4e343f4
Show file tree
Hide file tree
Showing 16 changed files with 3,302 additions and 50 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ in remote mode (meaning that `lnd-mode=remote` is set). It shows the

| LiT | LND |
|-------------------|--------------|
| **v0.13.5-alpha** | v0.17.1-beta |
| **v0.13.4-alpha** | v0.17.1-beta |
| **v0.13.3-alpha** | v0.17.1-beta |
| **v0.13.2-alpha** | v0.17.0-beta |
Expand Down Expand Up @@ -160,6 +161,7 @@ The following table shows the supported combinations:

| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
|-------------------|--------------|--------------|---------------|--------------|----------------|
| **v0.13.5-alpha** | v0.18.3-beta | v0.28.8-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
| **v0.13.4-alpha** | v0.18.3-beta | v0.28.7-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
| **v0.13.3-alpha** | v0.18.2-beta | v0.28.6-beta | v0.2.13-alpha | v0.6.5-beta | v0.4.1-alpha |
| **v0.13.2-alpha** | v0.18.2-beta | v0.28.5-beta | v0.2.13-alpha | v0.6.5-beta | v0.3.3-alpha |
Expand Down
6 changes: 6 additions & 0 deletions app/scripts/build-protos.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const protoSources = async () => {
loop: `lightninglabs/loop/${loopVersion[1]}/looprpc/client.proto`,
'swapserverrpc/server': `lightninglabs/loop/${loopVersion[1]}/swapserverrpc/server.proto`,
'swapserverrpc/common': `lightninglabs/loop/${loopVersion[1]}/swapserverrpc/common.proto`,
'swapserverrpc/reservation': `lightninglabs/loop/${loopVersion[1]}/swapserverrpc/reservation.proto`,
trader: `lightninglabs/pool/${poolVersion[1]}/poolrpc/trader.proto`,
'auctioneerrpc/auctioneer': `lightninglabs/pool/${poolVersion[1]}/auctioneerrpc/auctioneer.proto`,
};
Expand All @@ -54,6 +55,7 @@ const filePatches = {
lnd: 'lnrpc: {}',
loop: 'looprpc: {}',
'swapserverrpc/common': 'looprpc: {}',
'swapserverrpc/reservation': 'looprpc: {}',
'swapserverrpc/server': 'looprpc: {}',
trader: 'poolrpc: {}',
'auctioneerrpc/auctioneer': 'poolrpc: {}',
Expand Down Expand Up @@ -118,6 +120,10 @@ const sanitize = async () => {
'import "common.proto"',
'import "swapserverrpc/common.proto"',
);
content = content.replace(
'import "reservation.proto"',
'import "swapserverrpc/reservation.proto"',
);
await fs.writeFile(path, content);
}
};
Expand Down
116 changes: 116 additions & 0 deletions app/src/types/generated/swapserverrpc/reservation_pb.d.ts

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

Loading

0 comments on commit 4e343f4

Please sign in to comment.