Skip to content

Commit

Permalink
Merge pull request #296 from tnull/2024-05-cut-v0.2.2
Browse files Browse the repository at this point in the history
Cut v0.2.2 release
  • Loading branch information
tnull authored May 21, 2024
2 parents 4f54afb + d3929d0 commit bb28b94
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 0.2.2 - May 21, 2024

This is a bugfix release that restablishes compatibility of Swift packages with Xcode >15.3.

## Bug Fixes
- Swift bindings can now be built using Xcode 15.3 and later again (#294)

In total, this release features 5 files changed, 66 insertions, 2 deletions
deletions in 2 commits from 1 author, in alphabetical order:

- Elias Rohrer

# 0.2.1 - Jan 26, 2024

This is a bugfix release bumping the used LDK and BDK dependencies to the
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ldk-node"
version = "0.2.1"
version = "0.2.2"
authors = ["Elias Rohrer <[email protected]>"]
homepage = "https://lightningdevkit.org/"
license = "MIT OR Apache-2.0"
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.2.1"
let checksum = "cca3d5f380c3c216c22ac892cb04a792f3982730e570df71d824462f14c1350e"
let tag = "v0.2.2"
let checksum = "704677fd9f3ec2636e5670a08a862d66011e5acacc0b89c1f8dbd2356ef5f10e"
let url = "https://github.com/lightningdevkit/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"

let package = Package(
Expand Down
2 changes: 1 addition & 1 deletion bindings/kotlin/ldk-node-android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
libraryVersion=0.2.1
libraryVersion=0.2.2
2 changes: 1 addition & 1 deletion bindings/kotlin/ldk-node-jvm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official
libraryVersion=0.2.1
libraryVersion=0.2.2
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ldk_node"
version = "0.2.1"
version = "0.2.2"
authors = [
{ name="Elias Rohrer", email="[email protected]" },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<key>CFBundleName</key>
<string>LDKNodeFFI</string>
<key>CFBundleVersion</key>
<string>0.3.0</string>
<string>0.2.2</string>
<key>CFBundleShortVersionString</key>
<string>0.3.0</string>
<string>0.2.2</string>
<key>CFBundleExecutable</key>
<string>LDKNodeFFI</string>
<key>MinimumOSVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<key>CFBundleName</key>
<string>LDKNodeFFI</string>
<key>CFBundleVersion</key>
<string>0.3.0</string>
<string>0.2.2</string>
<key>CFBundleShortVersionString</key>
<string>0.3.0</string>
<string>0.2.2</string>
<key>CFBundleExecutable</key>
<string>LDKNodeFFI</string>
<key>MinimumOSVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<key>CFBundleName</key>
<string>LDKNodeFFI</string>
<key>CFBundleVersion</key>
<string>0.3.0</string>
<string>0.2.2</string>
<key>CFBundleShortVersionString</key>
<string>0.3.0</string>
<string>0.2.2</string>
<key>CFBundleExecutable</key>
<string>LDKNodeFFI</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion bindings/swift/Sources/LDKNode/LDKNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3551,4 +3551,4 @@ private func uniffiEnsureInitialized() {
case .apiChecksumMismatch:
fatalError("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
}
}
}

0 comments on commit bb28b94

Please sign in to comment.