Skip to content

Commit 674854c

Browse files
committed
Versioning to 0.1.5
Signed-off-by: neoz666 <neoz.blockchain@gmail.com>
1 parent 717652b commit 674854c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-coinselect"
3-
version = "0.1.1"
3+
version = "0.1.5"
44
edition = "2021"
55
description = "A blockchain-agnostic coin selection library built in Rust."
66
readme = "README.md"

src/selectcoin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ pub fn select_coin(
3030
// ("srd", select_coin_srd),
3131
("fifo", select_coin_fifo),
3232
("lowestlarger", select_coin_lowestlarger),
33-
("knapsack", select_coin_knapsack), // Future algorithms can be added here
34-
("leastchange", select_coin_bnb_leastchange),
33+
("knapsack", select_coin_knapsack),
34+
("leastchange", select_coin_bnb_leastchange), // Future algorithms can be added here
3535
];
3636

3737
for (algo_name, algo) in algorithms {

0 commit comments

Comments
 (0)