From 34a24244c081157dc4e10fbd1c694b98cc7a485a Mon Sep 17 00:00:00 2001 From: yancy Date: Wed, 7 Feb 2024 12:40:47 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf1eedc..935cb41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,10 @@ # 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. +- Use Criterion instead of Cargo Bench for benchmarking. +- Bump MSRV to 1.56.1 diff --git a/Cargo.toml b/Cargo.toml index 68a3481..ab7e9af 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"]