Skip to content

Commit 0b99977

Browse files
authored
Merge pull request #616 from tnull/2025-08-cut-v0.6.2-bindings
Cut v0.6.2 bindings
2 parents e5097c9 + f481f07 commit 0b99977

File tree

6 files changed

+8
-169
lines changed

6 files changed

+8
-169
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.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import PackageDescription
55

66
let tag = "v0.6.2"
7-
let checksum = "73f53b615d5bfdf76f2e7233bde17a2a62631292ce506763a7150344230859c8"
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)