diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fc958bc7..febc23831 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,9 +37,10 @@ ### Removed -#[0.6.2] +#[cdk:v0.6.1,cdk-mintd:v0.6.2] ### Fixed cdk: Missing check on mint that outputs equals the quote amount ([thesimplekid]). +cdk: Reset mint quote status if in state that cannot continue ([thesimeokid]). #[0.6.1] ### Added diff --git a/crates/cdk-common/Cargo.toml b/crates/cdk-common/Cargo.toml index 0a8e35915..dee0bb63b 100644 --- a/crates/cdk-common/Cargo.toml +++ b/crates/cdk-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-common" -version = "0.6.0" +version = "0.6.1" edition = "2021" description = "CDK common types and traits" rust-version = "1.63.0" # MSRV diff --git a/crates/cdk-mintd/Cargo.toml b/crates/cdk-mintd/Cargo.toml index fcf92447f..550d415a5 100644 --- a/crates/cdk-mintd/Cargo.toml +++ b/crates/cdk-mintd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-mintd" -version = "0.6.1" +version = "0.6.2" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -12,7 +12,7 @@ description = "CDK mint binary" [dependencies] anyhow = "1" axum = "0.6.20" -cdk = { path = "../cdk", version = "0.6.0", default-features = false, features = [ +cdk = { path = "../cdk", version = "0.6.1", default-features = false, features = [ "mint", ] } cdk-redb = { path = "../cdk-redb", version = "0.6.0", default-features = false, features = [ diff --git a/crates/cdk/Cargo.toml b/crates/cdk/Cargo.toml index 5c28749cf..720f770cf 100644 --- a/crates/cdk/Cargo.toml +++ b/crates/cdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk" -version = "0.6.0" +version = "0.6.1" edition = "2021" authors = ["CDK Developers"] description = "Core Cashu Development Kit library implementing the Cashu protocol" @@ -21,7 +21,7 @@ http_subscription = [] [dependencies] -cdk-common = { path = "../cdk-common", version = "0.6.0" } +cdk-common = { path = "../cdk-common", version = "0.6.1" } cbor-diag = "0.1.12" async-trait = "0.1" anyhow = { version = "1.0.43", features = ["backtrace"] }