Skip to content

Cut v0.2.2 release #296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 21, 2024
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
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 <dev@tnull.de>"]
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="dev@tnull.de" },
]
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")
}
}
}
Loading