Bump lightning-liquidity version
What changed, and why it matters
This commit only updates version numbers in two package configuration files. It does not change any actual program code, so it cannot introduce or fix a security vulnerability on its own. It is a routine housekeeping step to prepare for later changes.
No security action needed. Review the upcoming commits that depend on this version bump for any actual security-relevant changes.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit bumps lightning-liquidity from 0.2.0+git to 0.3.0+git in lightning-liquidity/Cargo.toml and updates the dependency version in lightning-background-processor/Cargo.toml accordingly. The commit message explicitly states this is to avoid future SemVer violations when changing ALiquidityManager associated types. No source code, logic, or API behavior is modified.
Changed components
lightning-liquidity/Cargo.tomllightning-background-processor/Cargo.tomlInspect captured patch +3 / −3
diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml
index ef0a984..7fe68bc 100644
--- a/lightning-background-processor/Cargo.toml
+++ b/lightning-background-processor/Cargo.toml
@@ -26,14 +26,14 @@ bitcoin_hashes = { version = "0.14.0", default-features = false }
bitcoin-io = { version = "0.1.2", default-features = false }
lightning = { version = "0.3.0", path = "../lightning", default-features = false }
lightning-rapid-gossip-sync = { version = "0.2.0", path = "../lightning-rapid-gossip-sync", default-features = false }
-lightning-liquidity = { version = "0.2.0", path = "../lightning-liquidity", default-features = false }
+lightning-liquidity = { version = "0.3.0", path = "../lightning-liquidity", default-features = false }
possiblyrandom = { version = "0.2", path = "../possiblyrandom", default-features = false }
[dev-dependencies]
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
lightning = { version = "0.3.0", path = "../lightning", features = ["_test_utils"] }
lightning-invoice = { version = "0.34.0", path = "../lightning-invoice" }
-lightning-liquidity = { version = "0.2.0", path = "../lightning-liquidity", default-features = false, features = ["_test_utils"] }
+lightning-liquidity = { version = "0.3.0", path = "../lightning-liquidity", default-features = false, features = ["_test_utils"] }
lightning-persister = { version = "0.2.0", path = "../lightning-persister" }
[lints]
diff --git a/lightning-liquidity/Cargo.toml b/lightning-liquidity/Cargo.toml
index 2f83077..67e82a5 100644
--- a/lightning-liquidity/Cargo.toml
+++ b/lightning-liquidity/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lightning-liquidity"
-version = "0.2.0+git"
+version = "0.3.0+git"
authors = ["John Cantrell <johncantrell97@gmail.com>", "Elias Rohrer <dev@tnull.de>"]
homepage = "https://lightningdevkit.org/"
license = "MIT OR Apache-2.0"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.