Skip to content

Commit f993474

Browse files
committed
Merge branch 'master' into 0-19-staging
2 parents bee180e + ef1ddc9 commit f993474

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+5216
-229
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,4 +255,18 @@ jobs:
255255
with:
256256
name: logs-itest
257257
path: logs-itest.zip
258-
retention-days: 5
258+
retention-days: 5
259+
260+
########################
261+
# check PR updates release notes
262+
########################
263+
release-notes-check:
264+
name: check release notes updated
265+
runs-on: ubuntu-latest
266+
if: '!contains(github.event.pull_request.labels.*.name, ''no-changelog'')'
267+
steps:
268+
- name: git checkout
269+
uses: actions/checkout@v3
270+
271+
- name: release notes check
272+
run: scripts/check-release-notes.sh

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,13 @@ unit-race:
178178
mkdir -p app/build && touch app/build/index.html
179179
env CGO_ENABLED=1 GORACE="history_size=7 halt_on_errors=1" $(UNIT_RACE) -tags="$(LND_RELEASE_TAGS)"
180180

181+
clean-itest:
182+
@$(call print, "Cleaning itest binaries.")
183+
rm -rf itest/litd-itest itest/btcd-itest itest/lnd-itest
184+
181185
build-itest: app-build
182-
@$(call print, "Building itest btcd and litd.")
186+
@$(call print, "Building itest binaries.")
187+
CGO_ENABLED=0 $(GOBUILD) -tags="$(ITEST_TAGS)" -o itest/litd-itest -ldflags "$(ITEST_LDFLAGS)" $(PKG)/cmd/litd
183188
CGO_ENABLED=0 $(GOBUILD) -tags="$(ITEST_TAGS)" -o itest/btcd-itest -ldflags "$(ITEST_LDFLAGS)" $(BTCD_PKG)
184189
CGO_ENABLED=0 $(GOBUILD) -tags="$(ITEST_TAGS)" -o itest/lnd-itest -ldflags "$(ITEST_LDFLAGS)" $(LND_PKG)/cmd/lnd
185190

@@ -250,7 +255,7 @@ rpc-js-compile:
250255
@$(call print, "Compiling JSON/WASM stubs.")
251256
GOOS=js GOARCH=wasm $(GOBUILD) $(PKG)/litrpc
252257

253-
clean:
258+
clean: clean-itest
254259
@$(call print, "Cleaning source.$(NC)")
255260
$(RM) ./litcli-debug
256261
$(RM) ./litd-debug

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ in remote mode (meaning that `lnd-mode=remote` is set). It shows the
7878

7979
| LiT | LND |
8080
|-------------------|--------------|
81+
| **v0.13.1-alpha** | v0.17.0-beta |
8182
| **v0.13.0-alpha** | v0.17.0-beta |
8283
| **v0.12.5-alpha** | v0.17.0-beta |
8384
| **v0.12.4-alpha** | v0.17.0-beta |
@@ -156,6 +157,7 @@ The following table shows the supported combinations:
156157

157158
| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
158159
|-------------------|--------------|--------------|---------------|--------------|----------------|
160+
| **v0.13.1-alpha** | v0.18.1-beta | v0.28.5-beta | v0.2.13-alpha | v0.6.5-beta | v0.3.3-alpha |
159161
| **v0.13.0-alpha** | v0.18.0-beta | v0.28.5-beta | v0.2.13-alpha | v0.6.5-beta | v0.3.3-alpha |
160162
| **v0.12.5-alpha** | v0.17.5-beta | v0.28.1-beta | v0.2.13-alpha | v0.6.4-beta | v0.3.3-alpha |
161163
| **v0.12.4-alpha** | v0.17.4-beta | v0.28.0-beta | v0.2.13-alpha | v0.6.4-beta | v0.3.3-alpha |

app/src/types/generated/lit-sessions_pb.d.ts

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)