Skip to content

Commit 6bf414f

Browse files
authored
Merge pull request #617 from tnull/2025-08-cut-v0.6.2-bindings-main
Update `main` post v0.6.2 bindings release
2 parents 5d2092b + 89bdacb commit 6bf414f

File tree

7 files changed

+30
-170
lines changed

7 files changed

+30
-170
lines changed

.github/workflows/publish-android.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/publish-jvm.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

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.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

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

1010
let package = Package(
Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,18 @@
11
buildscript {
22
repositories {
33
google()
4+
mavenCentral()
45
}
56
dependencies {
67
classpath("com.android.tools.build:gradle:7.1.2")
78
}
89
}
910

1011
plugins {
11-
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
1212
}
1313

1414
// library version is defined in gradle.properties
1515
val libraryVersion: String by project
1616

17-
// These properties are required here so that the nexus publish-plugin
18-
// finds a staging profile with the correct group (group is otherwise set as "")
19-
// and knows whether to publish to a SNAPSHOT repository or not
20-
// https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
2117
group = "org.lightningdevkit"
2218
version = libraryVersion
23-
24-
nexusPublishing {
25-
repositories {
26-
create("sonatype") {
27-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
28-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
29-
30-
val ossrhUsername: String? by project
31-
val ossrhPassword: String? by project
32-
username.set(ossrhUsername)
33-
password.set(ossrhPassword)
34-
}
35-
}
36-
}
Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,17 @@
11
buildscript {
22
repositories {
33
google()
4+
mavenCentral()
45
}
56
dependencies {
6-
classpath("com.android.tools.build:gradle:7.1.2")
77
}
88
}
99

1010
plugins {
11-
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
1211
}
1312

1413
// library version is defined in gradle.properties
1514
val libraryVersion: String by project
1615

17-
// These properties are required here so that the nexus publish-plugin
18-
// finds a staging profile with the correct group (group is otherwise set as "")
19-
// and knows whether to publish to a SNAPSHOT repository or not
20-
// https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
2116
group = "org.lightningdevkit"
2217
version = libraryVersion
23-
24-
nexusPublishing {
25-
repositories {
26-
create("sonatype") {
27-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
28-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
29-
30-
val ossrhUsername: String? by project
31-
val ossrhPassword: String? by project
32-
username.set(ossrhUsername)
33-
password.set(ossrhPassword)
34-
}
35-
}
36-
}

scripts/generate_checksum_files.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
md5sum $1 | cut -d ' ' -f 1 > $1.md5
3+
sha1sum $1 | cut -d ' ' -f 1 > $1.sha1
4+
sha256sum $1 | cut -d ' ' -f 1 > $1.sha256
5+
sha512sum $1 | cut -d ' ' -f 1 > $1.sha512

0 commit comments

Comments
 (0)