diff --git a/CHANGELOG.md b/CHANGELOG.md index c9a88002e..403a46b31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.7.0-rc.25 (Synonym Fork) +# 0.7.0-rc.27 (Synonym Fork) ## Bug Fixes @@ -7,6 +7,9 @@ confirmed, causing `get_merkle` to fail for 0-conf channel funding transactions. - Fixed duplicate payment events (`PaymentReceived`, `PaymentSuccessful`, `PaymentFailed`) being emitted when LDK replays events after node restart. +- Switched from forked rust-lightning (`ovitrif/rust-lightning#0.2-electrum-fix`) back to official + upstream crates.io releases. The Electrum sync fix (PR #4341) is now in upstream + `lightning-transaction-sync` v0.2.1. Also picks up `lightning` v0.2.2 fixes. ## Synonym Fork Additions diff --git a/Cargo.toml b/Cargo.toml index 6d360d968..363132cc1 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ exclude = ["bindings/uniffi-bindgen"] [package] name = "ldk-node" -version = "0.7.0-rc.25" +version = "0.7.0-rc.27" authors = ["Elias Rohrer "] homepage = "https://lightningdevkit.org/" license = "MIT OR Apache-2.0" @@ -123,19 +123,6 @@ check-cfg = [ name = "payments" harness = false -[patch.crates-io] -lightning = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-types = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-invoice = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-net-tokio = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-persister = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-background-processor = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-rapid-gossip-sync = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-block-sync = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-transaction-sync = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-liquidity = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } -lightning-macros = { git = "https://github.com/ovitrif/rust-lightning", branch = "0.2-electrum-fix" } - #[patch.crates-io] #lightning = { path = "../rust-lightning/lightning" } #lightning-types = { path = "../rust-lightning/lightning-types" } diff --git a/Package.swift b/Package.swift index a6a805327..528638571 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription -let tag = "v0.7.0-rc.25" +let tag = "v0.7.0-rc.27" let checksum = "3abf83a20d41a79337b9eae1c86da375b49423d5fe5176e4876b76285fde44ee" let url = "https://github.com/synonymdev/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip" diff --git a/bindings/kotlin/ldk-node-android/gradle.properties b/bindings/kotlin/ldk-node-android/gradle.properties index c7596b3d8..bd1f1827b 100644 --- a/bindings/kotlin/ldk-node-android/gradle.properties +++ b/bindings/kotlin/ldk-node-android/gradle.properties @@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m android.useAndroidX=true android.enableJetifier=true kotlin.code.style=official -libraryVersion=0.7.0-rc.25 +libraryVersion=0.7.0-rc.27 diff --git a/bindings/kotlin/ldk-node-jvm/gradle.properties b/bindings/kotlin/ldk-node-jvm/gradle.properties index 3169dc7fd..89374da3b 100644 --- a/bindings/kotlin/ldk-node-jvm/gradle.properties +++ b/bindings/kotlin/ldk-node-jvm/gradle.properties @@ -1,3 +1,3 @@ org.gradle.jvmargs=-Xmx1536m kotlin.code.style=official -libraryVersion=0.7.0-rc.25 +libraryVersion=0.7.0-rc.27 diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 210b1e43f..b0d1d02d8 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ldk_node" -version = "0.7.0-rc.25" +version = "0.7.0-rc.27" authors = [ { name="Elias Rohrer", email="dev@tnull.de" }, ]