mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-18 20:35:30 +01:00
chore: bump v0.10.0 (#797)
* chore: bump v0.10.0 * chore: cdk-signatory metadata
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<!-- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), -->
|
||||
<!-- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -->
|
||||
|
||||
## [Unreleased]
|
||||
## [0.10.0](https://github.com/cashubtc/cdk/releases/tag/v0.10.0)
|
||||
### Added
|
||||
- SignatoryManager service [PR](https://github.com/cashubtc/cdk/pull/509) ([crodas]).
|
||||
- Mint URL flag option [PR](https://github.com/cashubtc/cdk/pull/765) ([thesimplekid]).
|
||||
@@ -16,7 +16,7 @@
|
||||
- Refactored NUT-04 and NUT-05 [PR](https://github.com/cashubtc/cdk/pull/749) ([thesimplekid]).
|
||||
- Updated Nix flake to 25.05 and removed Nix cache [PR](https://github.com/cashubtc/cdk/pull/769) ([thesimplekid]).
|
||||
|
||||
## [0.9.3]
|
||||
## [0.9.3](https://github.com/cashubtc/cdk/releases/tag/v0.9.3)
|
||||
### Changed
|
||||
- Melt will perform swap before attempting to melt if exact amount is not available [PR](https://github.com/cashubtc/cdk/pull/793) ([crodas]).
|
||||
|
||||
|
||||
28
Cargo.toml
28
Cargo.toml
@@ -33,7 +33,7 @@ rust-version = "1.75.0"
|
||||
license = "MIT"
|
||||
homepage = "https://github.com/cashubtc/cdk"
|
||||
repository = "https://github.com/cashubtc/cdk.git"
|
||||
version = "0.9.2"
|
||||
version = "0.10.0"
|
||||
readme = "README.md"
|
||||
|
||||
[workspace.dependencies]
|
||||
@@ -43,19 +43,19 @@ 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.9.2" }
|
||||
cdk = { path = "./crates/cdk", default-features = false, version = "=0.9.2" }
|
||||
cdk-common = { path = "./crates/cdk-common", default-features = false, version = "=0.9.2" }
|
||||
cdk-axum = { path = "./crates/cdk-axum", default-features = false, version = "=0.9.2" }
|
||||
cdk-cln = { path = "./crates/cdk-cln", version = "=0.9.2" }
|
||||
cdk-lnbits = { path = "./crates/cdk-lnbits", version = "=0.9.2" }
|
||||
cdk-lnd = { path = "./crates/cdk-lnd", version = "=0.9.2" }
|
||||
cdk-fake-wallet = { path = "./crates/cdk-fake-wallet", version = "=0.9.2" }
|
||||
cdk-payment-processor = { path = "./crates/cdk-payment-processor", default-features = true, version = "=0.9.2" }
|
||||
cdk-mint-rpc = { path = "./crates/cdk-mint-rpc", version = "=0.9.2" }
|
||||
cdk-redb = { path = "./crates/cdk-redb", default-features = true, version = "=0.9.2" }
|
||||
cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = true, version = "=0.9.2" }
|
||||
cdk-signatory = { path = "./crates/cdk-signatory", version = "=0.9.2", default-features = false }
|
||||
cashu = { path = "./crates/cashu", version = "=0.10.0" }
|
||||
cdk = { path = "./crates/cdk", default-features = false, version = "=0.10.0" }
|
||||
cdk-common = { path = "./crates/cdk-common", default-features = false, version = "=0.10.0" }
|
||||
cdk-axum = { path = "./crates/cdk-axum", default-features = false, version = "=0.10.0" }
|
||||
cdk-cln = { path = "./crates/cdk-cln", version = "=0.10.0" }
|
||||
cdk-lnbits = { path = "./crates/cdk-lnbits", version = "=0.10.0" }
|
||||
cdk-lnd = { path = "./crates/cdk-lnd", version = "=0.10.0" }
|
||||
cdk-fake-wallet = { path = "./crates/cdk-fake-wallet", version = "=0.10.0" }
|
||||
cdk-payment-processor = { path = "./crates/cdk-payment-processor", default-features = true, version = "=0.10.0" }
|
||||
cdk-mint-rpc = { path = "./crates/cdk-mint-rpc", version = "=0.10.0" }
|
||||
cdk-redb = { path = "./crates/cdk-redb", default-features = true, version = "=0.10.0" }
|
||||
cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = true, version = "=0.10.0" }
|
||||
cdk-signatory = { path = "./crates/cdk-signatory", version = "=0.10.0", default-features = false }
|
||||
clap = { version = "4.5.31", features = ["derive"] }
|
||||
ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
|
||||
cbor-diag = "0.1.12"
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
[package]
|
||||
name = "cdk-signatory"
|
||||
version = "0.9.2"
|
||||
edition = "2021"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors = ["CDK Developers"]
|
||||
description = "CDK signatory default implementation"
|
||||
homepage = "https://github.com/cashubtc/cdk"
|
||||
repository = "https://github.com/cashubtc/cdk.git"
|
||||
rust-version.workspace = true # MSRV
|
||||
license.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["grpc", "sqlite"]
|
||||
|
||||
Reference in New Issue
Block a user