Skip to content

Commit e5097c9

Browse files
authored
Merge pull request #614 from tnull/2025-08-cut-v0.6.2
Cut v0.6.2 release
2 parents 52e8f6f + d864637 commit e5097c9

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# 0.6.2 - Aug. 14, 2025
2+
This patch release fixes a panic that could have been hit when syncing to a
3+
TLS-enabled Electrum server, as well as some minor issues when shutting down
4+
the node.
5+
6+
## Bug Fixes and Improvements
7+
- If not set by the user, we now install a default `CryptoProvider` for the
8+
`rustls` TLS library. This fixes an issue that would have the node panic
9+
whenever they first try to access an Electrum server behind an `ssl://`
10+
address. (#600)
11+
- We improved robustness of the shutdown procedure. In particular, we now
12+
wait for more background tasks to finish processing before shutting down
13+
LDK background processing. Previously some tasks were kept running which
14+
could have lead to race conditions. (#613)
15+
16+
In total, this release features 12 files changed, 198 insertions, 92
17+
deletions in 13 commits from 2 authors in alphabetical order:
18+
19+
- Elias Rohrer
20+
- moisesPomilio
21+
122
# 0.6.1 - Jun. 19, 2025
223
This patch release fixes minor issues with the recently-exposed `Bolt11Invoice`
324
type in bindings.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ldk-node"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = ["Elias Rohrer <[email protected]>"]
55
homepage = "https://lightningdevkit.org/"
66
license = "MIT OR Apache-2.0"

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import PackageDescription
55

6-
let tag = "v0.6.1"
6+
let tag = "v0.6.2"
77
let checksum = "73f53b615d5bfdf76f2e7233bde17a2a62631292ce506763a7150344230859c8"
88
let url = "https://github.com/lightningdevkit/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"
99

bindings/kotlin/ldk-node-android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m
22
android.useAndroidX=true
33
android.enableJetifier=true
44
kotlin.code.style=official
5-
libraryVersion=0.6.1
5+
libraryVersion=0.6.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
org.gradle.jvmargs=-Xmx1536m
22
kotlin.code.style=official
3-
libraryVersion=0.6.1
3+
libraryVersion=0.6.2

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ldk_node"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = [
55
{ name="Elias Rohrer", email="[email protected]" },
66
]

0 commit comments

Comments
 (0)