Skip to content

Commit bb28b94

Browse files
authored
Merge pull request #296 from tnull/2024-05-cut-v0.2.2
Cut v0.2.2 release
2 parents 4f54afb + d3929d0 commit bb28b94

File tree

10 files changed

+25
-13
lines changed

10 files changed

+25
-13
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 0.2.2 - May 21, 2024
2+
3+
This is a bugfix release that restablishes compatibility of Swift packages with Xcode >15.3.
4+
5+
## Bug Fixes
6+
- Swift bindings can now be built using Xcode 15.3 and later again (#294)
7+
8+
In total, this release features 5 files changed, 66 insertions, 2 deletions
9+
deletions in 2 commits from 1 author, in alphabetical order:
10+
11+
- Elias Rohrer
12+
113
# 0.2.1 - Jan 26, 2024
214

315
This is a bugfix release bumping the used LDK and BDK dependencies to the

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.2.1"
3+
version = "0.2.2"
44
authors = ["Elias Rohrer <dev@tnull.de>"]
55
homepage = "https://lightningdevkit.org/"
66
license = "MIT OR Apache-2.0"

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.2.1"
7-
let checksum = "cca3d5f380c3c216c22ac892cb04a792f3982730e570df71d824462f14c1350e"
6+
let tag = "v0.2.2"
7+
let checksum = "704677fd9f3ec2636e5670a08a862d66011e5acacc0b89c1f8dbd2356ef5f10e"
88
let url = "https://github.com/lightningdevkit/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"
99

1010
let package = Package(

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.2.1
5+
libraryVersion=0.2.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.2.1
3+
libraryVersion=0.2.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.2.1"
3+
version = "0.2.2"
44
authors = [
55
{ name="Elias Rohrer", email="dev@tnull.de" },
66
]

bindings/swift/LDKNodeFFI.xcframework/ios-arm64/LDKNodeFFI.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundleName</key>
88
<string>LDKNodeFFI</string>
99
<key>CFBundleVersion</key>
10-
<string>0.3.0</string>
10+
<string>0.2.2</string>
1111
<key>CFBundleShortVersionString</key>
12-
<string>0.3.0</string>
12+
<string>0.2.2</string>
1313
<key>CFBundleExecutable</key>
1414
<string>LDKNodeFFI</string>
1515
<key>MinimumOSVersion</key>

bindings/swift/LDKNodeFFI.xcframework/ios-arm64_x86_64-simulator/LDKNodeFFI.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundleName</key>
88
<string>LDKNodeFFI</string>
99
<key>CFBundleVersion</key>
10-
<string>0.3.0</string>
10+
<string>0.2.2</string>
1111
<key>CFBundleShortVersionString</key>
12-
<string>0.3.0</string>
12+
<string>0.2.2</string>
1313
<key>CFBundleExecutable</key>
1414
<string>LDKNodeFFI</string>
1515
<key>MinimumOSVersion</key>

bindings/swift/LDKNodeFFI.xcframework/macos-arm64_x86_64/LDKNodeFFI.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundleName</key>
88
<string>LDKNodeFFI</string>
99
<key>CFBundleVersion</key>
10-
<string>0.3.0</string>
10+
<string>0.2.2</string>
1111
<key>CFBundleShortVersionString</key>
12-
<string>0.3.0</string>
12+
<string>0.2.2</string>
1313
<key>CFBundleExecutable</key>
1414
<string>LDKNodeFFI</string>
1515
<key>LSMinimumSystemVersion</key>

bindings/swift/Sources/LDKNode/LDKNode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3551,4 +3551,4 @@ private func uniffiEnsureInitialized() {
35513551
case .apiChecksumMismatch:
35523552
fatalError("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
35533553
}
3554-
}
3554+
}

0 commit comments

Comments
 (0)