From a7adb7c7041973d92838f030169919b886815861 Mon Sep 17 00:00:00 2001 From: bennyhodl Date: Wed, 23 Apr 2025 09:44:46 -0400 Subject: [PATCH] bump version 0.0.16 --- Cargo.lock | 4 ++-- ddk-node/Cargo.toml | 4 ++-- ddk/CHANGELOG.md | 10 ++++++++++ ddk/Cargo.toml | 2 +- payouts/CHANGELOG.md | 6 ++++++ payouts/Cargo.toml | 2 +- 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35326007..0ee3634a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -973,7 +973,7 @@ checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "ddk" -version = "0.0.15" +version = "0.0.16" dependencies = [ "anyhow", "async-trait", @@ -1066,7 +1066,7 @@ dependencies = [ [[package]] name = "ddk-payouts" -version = "0.0.15" +version = "0.0.16" dependencies = [ "anyhow", "bitcoin", diff --git a/ddk-node/Cargo.toml b/ddk-node/Cargo.toml index 680f4c37..1e38d574 100644 --- a/ddk-node/Cargo.toml +++ b/ddk-node/Cargo.toml @@ -8,9 +8,9 @@ repository = "https://github.com/bennyhodl/dlcdevkit" edition = "2021" [dependencies] -ddk = { version = "0.0.15", path = "../ddk", features = ["marketplace", "postgres", "kormir", "nostr"] } +ddk = { version = "0.0.16", path = "../ddk", features = ["marketplace", "postgres", "kormir", "nostr"] } ddk-manager = { version = "0.7.3", path = "../ddk-manager", features = ["use-serde"] } -ddk-payouts = { version = "0.0.15", path = "../payouts" } +ddk-payouts = { version = "0.0.16", path = "../payouts" } dlc = { version = "0.7.1", features = ["use-serde"] } dlc-messages = { version = "0.7.1", features = [ "use-serde"] } diff --git a/ddk/CHANGELOG.md b/ddk/CHANGELOG.md index 770ceecb..99bc9a1a 100644 --- a/ddk/CHANGELOG.md +++ b/ddk/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.16](https://github.com/bennyhodl/dlcdevkit/compare/ddk-v0.0.15...ddk-v0.0.16) - 2025-04-23 + +### Other + +- async wallet trait +- postgres module with sqlx +- async wallet storage +- update nostr & convert pubkey +- postgres init + ## [0.0.14](https://github.com/bennyhodl/dlcdevkit/compare/ddk-v0.0.13...ddk-v0.0.14) - 2025-01-17 ### Added diff --git a/ddk/Cargo.toml b/ddk/Cargo.toml index 8e3786d5..38869c0b 100644 --- a/ddk/Cargo.toml +++ b/ddk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddk" -version = "0.0.15" +version = "0.0.16" edition = "2021" license = "MIT" description = "application tooling for DLCs 🌊" diff --git a/payouts/CHANGELOG.md b/payouts/CHANGELOG.md index f6945dac..e090a2ee 100644 --- a/payouts/CHANGELOG.md +++ b/payouts/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.16](https://github.com/bennyhodl/dlcdevkit/compare/ddk-payouts-v0.0.15...ddk-payouts-v0.0.16) - 2025-04-23 + +### Other + +- async wallet trait + ## [0.0.14](https://github.com/bennyhodl/dlcdevkit/compare/ddk-payouts-v0.0.13...ddk-payouts-v0.0.14) - 2025-01-17 ### Other diff --git a/payouts/Cargo.toml b/payouts/Cargo.toml index b43c696d..9c4c9b29 100644 --- a/payouts/Cargo.toml +++ b/payouts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddk-payouts" -version = "0.0.15" +version = "0.0.16" authors = ["benny b "] description = "Library to build payout functions for DLC contracts." license = "MIT"