From 193d9cc9c13884a4faf682a61bd54eaef72ea7e7 Mon Sep 17 00:00:00 2001 From: yancy Date: Fri, 18 Oct 2024 10:48:06 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53a4d2f..db33685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,3 +46,11 @@ - Refactor SRD, BnB test modules - Minor refactor to SRD selection - Fix early return bug in SRD if a UTXO value exceeds i64::MAX. + +# 0.6.1 - 2024-10-21 + +- Fix how a target Amount of zero is handled +- Add unit tests to lib module and share common behavior between test modules +- Minor refactor to BnB algorithm to improve readability +- Revise doc comments for both SRD and BnB + diff --git a/Cargo.toml b/Cargo.toml index 3adb0a2..60114ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://github.com/rust-bitcoin/rust-bitcoin-coin-selection/" license = "CC0-1.0" name = "bitcoin-coin-selection" repository = "https://github.com/rust-bitcoin/rust-bitcoin-coin-selection/" -version = "0.6.0" +version = "0.6.1" # documentation = "https://docs.rs/bitcoin-coin-selection/" description = "Libary providing utility functions to efficiently select a set of UTXOs." keywords = ["bitcoin", "coin-selection", "coin", "coinselection", "utxo"]