Skip to content
Draft
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 .swiftformat
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
--swiftversion 5.5
--indent 4
--disable blankLineAfterImports
--disable redundantReturn
--disable opaqueGenericParameters
--binary-grouping none
--decimal-grouping none
--hex-grouping none
--octal-grouping none
--semicolons never
--wrapparameters before-first

6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Unreleased
# 0.7.0-rc.65 (Synonym Fork)

- The Android AAR now ships targeted R8 consumer keep rules for the UniFFI/JNA FFI surface.
## Bug Fixes

- Add keep consumer rules for JNA types UniFFI needs under R8.

# 0.7.0-rc.64 (Synonym Fork)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ exclude = ["bindings/uniffi-bindgen"]

[package]
name = "ldk-node"
version = "0.7.0-rc.64"
version = "0.7.0-rc.65"
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.7.0-rc.64"
let checksum = "8890d1b91f2b3e0a33ffd2854e1a4e9721e99706e8378177d30fbc435cd2db49"
let tag = "v0.7.0-rc.65"
let checksum = "c9e1b4fd124434a955f75a41044f5d3f2efbd14b1bb49276cc64bc174a43daee"
let url = "https://github.com/synonymdev/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"

let package = Package(
Expand Down
6 changes: 1 addition & 5 deletions bindgen.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail

# Install gobley-uniffi-bindgen once for all Kotlin scripts
echo "Installing gobley-uniffi-bindgen fork..."
cargo install --git https://github.com/ovitrif/gobley.git \
--branch fix-v0.2.0 gobley-uniffi-bindgen --force
export BINDGEN_GOBLEY_INSTALLED=1
source ./scripts/install_gobley_bindgen.sh

# Standardize on release-smaller for all targets
export BINDGEN_PROFILE="release-smaller"
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 @@ -3,4 +3,4 @@ android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
group=com.synonym
version=0.7.0-rc.64
version=0.7.0-rc.65
Loading