diff --git a/CHANGELOG.md b/CHANGELOG.md index bf1eedc..f19f41e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,11 @@ # 0.2.0 - 2023-06-03 - Add Single Random Draw module and a basic error type. + +# 0.3.0 - 2024-02-07 + +- Move existing branch and bound to a new module. +- Re-implement branch and bound optimizing for waste score and performance. +- Change the return type of SRD to Iterator. +- Use Criterion instead of Cargo Bench for benchmarking. +- Bump MSRV to 1.56.1 diff --git a/Cargo.toml b/Cargo.toml index ff63da2..b9c30cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://github.com/rust-bitcoin/rust-bitcoin-coin-selection/" license = "CC0-1.0" name = "rust-bitcoin-coin-selection" repository = "https://github.com/rust-bitcoin/rust-bitcoin-coin-selection/" -version = "0.2.0" +version = "0.3.0" # documentation = "https://docs.rs/bitcoin-coin-selection/" description = "Libary providing utility functions to efficiently select a set of UTXOs." keywords = ["crypto", "bitcoin"]