From f6c11173f999717c8335643c75629e6f0986d1d6 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Tue, 25 Mar 2025 09:25:53 +0000 Subject: [PATCH] chore: prepare v0.8.1 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 26 +++++++++++++------------- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59fb3ede..c06e15f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ + +## [v0.8.1](https://github.com/cashubtc/cdk/releases/tag/v0.8.1) +### Fixed +- cashu: Handle url with paths [PR](https://github.com/cashubtc/cdk/pull/678) ([benthecarmane]). + +### Changed +- cdk: export `MintKeySetInfo` [PR](https://github.com/cashubtc/cdk/pull/673) ([davidcaseria]). + ## [v0.8.0](https://github.com/cashubtc/cdk/releases/tag/v0.8.0) ### Fixed - cdk: proof matches conditions was not matching payment conditions correctly ([thesimplekid]). diff --git a/Cargo.toml b/Cargo.toml index 88c9cc92..0188ede8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ rust-version = "1.75.0" license = "MIT" homepage = "https://github.com/cashubtc/cdk" repository = "https://github.com/cashubtc/cdk.git" -version = "0.8.0" +version = "0.8.1" [workspace.dependencies] anyhow = "1" @@ -19,18 +19,18 @@ axum = { version = "0.8.1", features = ["ws"] } bitcoin = { version = "0.32.2", features = ["base64", "serde", "rand", "rand-std"] } bip39 = { version = "2.0", features = ["rand"] } jsonwebtoken = "9.2.0" -cashu = { path = "./crates/cashu", version = "=0.8.0" } -cdk = { path = "./crates/cdk", default-features = false, version = "=0.8.0" } -cdk-common = { path = "./crates/cdk-common", default-features = false, version = "=0.8.0" } -cdk-axum = { path = "./crates/cdk-axum", default-features = false, version = "=0.8.0" } -cdk-cln = { path = "./crates/cdk-cln", version = "=0.8.0" } -cdk-lnbits = { path = "./crates/cdk-lnbits", version = "=0.8.0" } -cdk-lnd = { path = "./crates/cdk-lnd", version = "=0.8.0" } -cdk-fake-wallet = { path = "./crates/cdk-fake-wallet", version = "=0.8.0" } -cdk-payment-processor = { path = "./crates/cdk-payment-processor", default-features = true, version = "=0.8.0" } -cdk-mint-rpc = { path = "./crates/cdk-mint-rpc", version = "=0.8.0" } -cdk-redb = { path = "./crates/cdk-redb", default-features = true, version = "=0.8.0" } -cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = true, version = "=0.8.0" } +cashu = { path = "./crates/cashu", version = "=0.8.1" } +cdk = { path = "./crates/cdk", default-features = false, version = "=0.8.1" } +cdk-common = { path = "./crates/cdk-common", default-features = false, version = "=0.8.1" } +cdk-axum = { path = "./crates/cdk-axum", default-features = false, version = "=0.8.1" } +cdk-cln = { path = "./crates/cdk-cln", version = "=0.8.1" } +cdk-lnbits = { path = "./crates/cdk-lnbits", version = "=0.8.1" } +cdk-lnd = { path = "./crates/cdk-lnd", version = "=0.8.1" } +cdk-fake-wallet = { path = "./crates/cdk-fake-wallet", version = "=0.8.1" } +cdk-payment-processor = { path = "./crates/cdk-payment-processor", default-features = true, version = "=0.8.1" } +cdk-mint-rpc = { path = "./crates/cdk-mint-rpc", version = "=0.8.1" } +cdk-redb = { path = "./crates/cdk-redb", default-features = true, version = "=0.8.1" } +cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = true, version = "=0.8.1" } clap = { version = "4.5.31", features = ["derive"] } ciborium = { version = "0.2.2", default-features = false, features = ["std"] } cbor-diag = "0.1.12"