From abbe1682e47425e428d15e2891fa28d7d4a801eb Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Mon, 24 Mar 2025 19:41:22 +0000 Subject: [PATCH 1/2] docs: changelog --- CHANGELOG.md | 2 +- justfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd972b67..59fb3ede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ -## [Unreleased] +## [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]). - cdk: Updating mint_url would remove proofs when we want to keep them ([ok300]). diff --git a/justfile b/justfile index 69424d1f..ddd92243 100644 --- a/justfile +++ b/justfile @@ -124,9 +124,9 @@ release m="": args=( "-p cashu" "-p cdk-common" - "-p cdk" - "-p cdk-redb" "-p cdk-sqlite" + "-p cdk-redb" + "-p cdk" "-p cdk-rexie" "-p cdk-axum" "-p cdk-mint-rpc" From e260a12e4cdd161f552e20327078f1c7f7470274 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Mon, 24 Mar 2025 22:19:45 +0000 Subject: [PATCH 2/2] fix: exp for mint-rpc --- crates/cdk-mint-rpc/build.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/cdk-mint-rpc/build.rs b/crates/cdk-mint-rpc/build.rs index 4516df19..b9a52bd5 100644 --- a/crates/cdk-mint-rpc/build.rs +++ b/crates/cdk-mint-rpc/build.rs @@ -1,5 +1,7 @@ fn main() -> Result<(), Box> { println!("cargo:rerun-if-changed=src/proto/cdk-mint-rpc.proto"); - tonic_build::compile_protos("src/proto/cdk-mint-rpc.proto")?; + tonic_build::configure() + .protoc_arg("--experimental_allow_proto3_optional") + .compile_protos(&["src/proto/cdk-mint-rpc.proto"], &["src/proto"])?; Ok(()) }