Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.7.0-rc.36 (Synonym Fork)
# 0.7.0-rc.37 (Synonym Fork)

## Bug Fixes

Expand Down Expand Up @@ -59,11 +59,11 @@
## Synonym Fork Additions

- Added pre-flight probe correlation: `Event::ProbeSuccessful` and `Event::ProbeFailed` (from LDK
probe lifecycle), plus `ProbeHandle` (`payment_id`, synthetic `payment_hash`) returned by
`Bolt11Payment::send_probes`, `send_probes_using_amount`, and `SpontaneousPayment::send_probes`
(one handle per probe path). Match handles to events by `payment_id` (and optionally
`payment_hash`); these are not the BOLT11 invoice payment hash. UniFFI: `dictionary ProbeHandle`
in `ldk_node.udl`.
probe lifecycle), plus `ProbeHandle` (`payment_id`, synthetic `payment_hash`) values returned
for probes actually dispatched by `Bolt11Payment::send_probes`, `send_probes_using_amount`, and
`SpontaneousPayment::send_probes` (some route paths may be skipped before dispatch). Match
handles to events by `payment_id` (and optionally `payment_hash`); these are not the BOLT11
invoice payment hash. UniFFI: `dictionary ProbeHandle` in `ldk_node.udl`.
- Added `connection_timeout_secs` field to `ElectrumSyncConfig` (default: 10 s). This bounds
Electrum socket operations for both the BDK on-chain and LDK tx-sync clients, preventing Tokio's
blocking thread pool from being exhausted by threads stuck on dead sockets under total packet
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ exclude = ["bindings/uniffi-bindgen"]

[package]
name = "ldk-node"
version = "0.7.0-rc.36"
version = "0.7.0-rc.37"
authors = ["Elias Rohrer <dev@tnull.de>"]
homepage = "https://lightningdevkit.org/"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let tag = "v0.7.0-rc.36"
let checksum = "e46e7c75c03831175b437fe032cef1cd43ba5c171871f82c4337a4bd5da62f5f"
let tag = "v0.7.0-rc.37"
let checksum = "31ca289fb94221bf1a0077532a868d1e19912f19760735697023066b1160eea7"
let url = "https://github.com/synonymdev/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"

let package = Package(
Expand Down
2 changes: 1 addition & 1 deletion bindings/kotlin/ldk-node-android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
group=com.synonym
version=0.7.0-rc.36
version=0.7.0-rc.37
Loading
Loading