Skip to content

Commit b1c0707

Browse files
ovitrifclaude
andcommitted
fix: remove debug symbols from release-smaller, revert to rc.31
The debug/split-debuginfo settings added in #71 doubled the XCFramework zip size (239→479 MB). Remove them entirely and revert version from rc.32 back to rc.31. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ee72371 commit b1c0707

6 files changed

Lines changed: 6 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.7.0-rc.32 (Synonym Fork)
1+
# 0.7.0-rc.31 (Synonym Fork)
22

33
## Bug Fixes
44

@@ -29,8 +29,6 @@
2929

3030
## Synonym Fork Additions
3131

32-
- Enabled line-table debug info in `release-smaller` profile for iOS dSYM generation
33-
and Android crash symbolication
3432
- Added `OnchainPayment::calculate_send_all_fee()` to preview the fee for a drain / send-all
3533
transaction before broadcasting (fee-calculation counterpart of `send_all_to_address`)
3634
- Added runtime APIs for dynamic address type management:

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exclude = ["bindings/uniffi-bindgen"]
44

55
[package]
66
name = "ldk-node"
7-
version = "0.7.0-rc.32"
7+
version = "0.7.0-rc.31"
88
authors = ["Elias Rohrer <dev@tnull.de>"]
99
homepage = "https://lightningdevkit.org/"
1010
license = "MIT OR Apache-2.0"
@@ -28,8 +28,6 @@ opt-level = 'z' # Optimize for size.
2828
lto = true # Enable Link Time Optimization
2929
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
3030
panic = 'abort' # Abort on panic
31-
debug = "line-tables-only" # dSYM/debug symbols for iOS/Android crash symbolication
32-
split-debuginfo = "packed" # Single .dSYM bundle (macOS) / embedded DWARF (Linux)
3331

3432
[features]
3533
default = []

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import PackageDescription
55

6-
let tag = "v0.7.0-rc.32"
6+
let tag = "v0.7.0-rc.31"
77
let checksum = "5a9ac761833dd2aad0a88da7da8887923fc6ac8b33a14035b95c7d3a9d0d2b3c"
88
let url = "https://github.com/synonymdev/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"
99

bindings/kotlin/ldk-node-android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ android.useAndroidX=true
33
android.enableJetifier=true
44
kotlin.code.style=official
55
group=com.synonym
6-
version=0.7.0-rc.32
6+
version=0.7.0-rc.31
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.jvmargs=-Xmx1536m
22
kotlin.code.style=official
33
group=com.synonym
4-
version=0.7.0-rc.32
4+
version=0.7.0-rc.31

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.7.0-rc.32"
3+
version = "0.7.0-rc.31"
44
authors = [
55
{ name="Elias Rohrer", email="dev@tnull.de" },
66
]

0 commit comments

Comments
 (0)