From 68211b24843d9e8c51d0fb1fded159278f309779 Mon Sep 17 00:00:00 2001 From: Leo Nash Date: Tue, 11 Nov 2025 16:24:51 +0000 Subject: [PATCH 1/3] Update crate metadata with latest repo location and MSRV --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3b8c1a8..5062019 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,11 +2,11 @@ name = "vss-client-ng" version = "0.3.1" authors = ["Leo Nash ", "Elias Rohrer "] -rust-version = "1.63.0" +rust-version = "1.75.0" license = "MIT OR Apache-2.0" edition = "2021" homepage = "https://lightningdevkit.org/" -repository = "https://github.com/lightningdevkit/rust-vss-client" +repository = "https://github.com/lightningdevkit/vss-client" description = "Client-side library to interact with Versioned Storage Service (VSS)." keywords = ["vss", "bitcoin", "lightning", "ldk", "bdk"] categories = ["web-programming::http-client", "cryptography::cryptocurrencies"] From 32881065d52debde3db97bdb9c8dabc0d0f3b429 Mon Sep 17 00:00:00 2001 From: Leo Nash Date: Tue, 11 Nov 2025 01:53:54 +0000 Subject: [PATCH 2/3] Add CHANGELOG.md, and append 0.4.0 release notes --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f06b596 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# 0.4.0 - Nov 11, 2025 + +## Crate Metadata +- Rename `vss-client` crate to `vss-client-ng` (#46). +- Move repository from to (#48). + +## Features and API updates +- Bump MSRV to 1.75.0 (#38). +- Add `VssClient::from_client_and_headers` constructor (#39). +- Allow to set `aad` in `StorableBuilder::{build, deconstruct}` (#40). +- Pass the `data_encryption_key` by reference to `StorableBuilder::{build, deconstruct}` (#40). + +## Bug Fixes and Improvements +- Set a 10 second timeout on all HTTP client requests (#39). + +In total, this release features 15 files changed, 205 insertions, 1162 deletions in 19 commits from 2 authors in alphabetical order: +- Elias Rohrer +- Leo Nash From 4d1c80d8a01a39c7a0be9059e317f31403850955 Mon Sep 17 00:00:00 2001 From: Leo Nash Date: Tue, 11 Nov 2025 16:26:12 +0000 Subject: [PATCH 3/3] Minor Version Release 0.4.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5062019..50527ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vss-client-ng" -version = "0.3.1" +version = "0.4.0" authors = ["Leo Nash ", "Elias Rohrer "] rust-version = "1.75.0" license = "MIT OR Apache-2.0"