prepare v0.1.6

This commit is contained in:
daywalker90 2025-11-10 10:51:32 +01:00
parent 243be6ab84
commit c609f22331
No known key found for this signature in database
4 changed files with 10 additions and 10 deletions

View file

@ -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

2
Cargo.lock generated
View file

@ -266,7 +266,7 @@ dependencies = [
[[package]]
name = "cln-nip47"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"anyhow",
"cln-plugin",

View file

@ -1,6 +1,6 @@
[package]
name = "cln-nip47"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
rust-version = "1.85"

View file

@ -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