Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 0.4.0 - Nov 11, 2025

## Crate Metadata
- Rename `vss-client` crate to `vss-client-ng` (#46).
- Move repository from <https://github.com/lightningdevkit/rust-vss-client> to <https://github.com/lightningdevkit/vss-client> (#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
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "vss-client-ng"
version = "0.3.1"
version = "0.4.0"
authors = ["Leo Nash <hello@leonash.net>", "Elias Rohrer <dev@tnull.de>"]
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"]
Expand Down