diff --git a/CHANGELOG.md b/CHANGELOG.md index 630884e..3310f29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,19 @@ # Changelog -## Unreleased +## [0.1.6] 2025-11-10 ### Added -- include pending and failed payments in ``list_transactions``, now that ``state`` exists wallets can display these more meaningfully -- include expired invoices in ``list_transactions``, now that ``state`` exists wallets can display these more meaningfully +- Include pending and failed payments in ``list_transactions``, now that ``state`` exists wallets can display these more meaningfully +- Include expired invoices in ``list_transactions``, now that ``state`` exists wallets can display these more meaningfully ### Changed -- upgrade ``nostr_sdk`` to ``v0.44`` and implement new fields in sync with the nip47 spec, e.g. ``state`` for transactions -- improved handling of events after a restart +- Upgrade ``nostr_sdk`` to ``v0.44`` and implement new fields in sync with the ``nip47`` spec, e.g. ``state`` for transactions +- Only process events that were created after ``cln-nip47`` started so it does not sent duplicate responses ### Fixed -- some minor fixes around bolt11 invoices with 0 amount (aka any amount) +- Some minor fixes around ``bolt11`` invoices with 0 amount (aka any amount) - Don't ignore `offset` parameter in ``list_transactions`` -- add ``notifications`` to the ``info_event``'s ``content`` if enabled +- Also add ``notifications`` to the ``info_event``'s ``content`` if enabled to be in line with the spec ## [0.1.5] 2025-07-24 diff --git a/Cargo.lock b/Cargo.lock index f1b31d5..576fc5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -266,7 +266,7 @@ dependencies = [ [[package]] name = "cln-nip47" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "cln-plugin", diff --git a/Cargo.toml b/Cargo.toml index 56c18e2..cfcb710 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cln-nip47" -version = "0.1.5" +version = "0.1.6" edition = "2021" rust-version = "1.85" diff --git a/coffee.yml b/coffee.yml index 95caa6d..9e05031 100644 --- a/coffee.yml +++ b/coffee.yml @@ -1,6 +1,6 @@ plugin: name: cln-nip47 - version: 0.1.5 + version: 0.1.6 lang: rust install: | cargo build --release && cp target/release/cln-nip47 . && cargo clean