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
43 changes: 0 additions & 43 deletions .github/workflows/publish-android.yml

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/publish-jvm.yml

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# 0.6.2 - Aug. 14, 2025
This patch release fixes a panic that could have been hit when syncing to a
TLS-enabled Electrum server, as well as some minor issues when shutting down
the node.

## Bug Fixes and Improvements
- If not set by the user, we now install a default `CryptoProvider` for the
`rustls` TLS library. This fixes an issue that would have the node panic
whenever they first try to access an Electrum server behind an `ssl://`
address. (#600)
- We improved robustness of the shutdown procedure. In particular, we now
wait for more background tasks to finish processing before shutting down
LDK background processing. Previously some tasks were kept running which
could have lead to race conditions. (#613)

In total, this release features 12 files changed, 198 insertions, 92
deletions in 13 commits from 2 authors in alphabetical order:

- Elias Rohrer
- moisesPomilio

# 0.6.1 - Jun. 19, 2025
This patch release fixes minor issues with the recently-exposed `Bolt11Invoice`
type in bindings.
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.6.1"
let checksum = "73f53b615d5bfdf76f2e7233bde17a2a62631292ce506763a7150344230859c8"
let tag = "v0.6.2"
let checksum = "dee28eb2bc019eeb61cc28ca5c19fdada465a6eb2b5169d2dbaa369f0c63ba03"
let url = "https://github.com/lightningdevkit/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"

let package = Package(
Expand Down
20 changes: 1 addition & 19 deletions bindings/kotlin/ldk-node-android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,36 +1,18 @@
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.2")
}
}

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

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

// These properties are required here so that the nexus publish-plugin
// finds a staging profile with the correct group (group is otherwise set as "")
// and knows whether to publish to a SNAPSHOT repository or not
// https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
group = "org.lightningdevkit"
version = libraryVersion

nexusPublishing {
repositories {
create("sonatype") {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))

val ossrhUsername: String? by project
val ossrhPassword: String? by project
username.set(ossrhUsername)
password.set(ossrhPassword)
}
}
}
21 changes: 1 addition & 20 deletions bindings/kotlin/ldk-node-jvm/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,36 +1,17 @@
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.2")
}
}

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

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

// These properties are required here so that the nexus publish-plugin
// finds a staging profile with the correct group (group is otherwise set as "")
// and knows whether to publish to a SNAPSHOT repository or not
// https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
group = "org.lightningdevkit"
version = libraryVersion

nexusPublishing {
repositories {
create("sonatype") {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))

val ossrhUsername: String? by project
val ossrhPassword: String? by project
username.set(ossrhUsername)
password.set(ossrhPassword)
}
}
}
5 changes: 5 additions & 0 deletions scripts/generate_checksum_files.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
md5sum $1 | cut -d ' ' -f 1 > $1.md5
sha1sum $1 | cut -d ' ' -f 1 > $1.sha1
sha256sum $1 | cut -d ' ' -f 1 > $1.sha256
sha512sum $1 | cut -d ' ' -f 1 > $1.sha512
Loading