From 5b3e4ab95b015b5bba5b73db2052cbb63a901466 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 10 Dec 2024 13:46:14 +1100 Subject: [PATCH] base58ck: Bump version to 0.2.0 In preparation for release add a changelog entry, bump the version, and update the lock files. --- Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- base58/CHANGELOG.md | 9 +++++++++ base58/Cargo.toml | 2 +- bitcoin/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 4277d220f..0b63cbb0f 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -22,7 +22,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "base58ck" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin-internals", "bitcoin_hashes 0.15.0", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 1f12e5e50..cfd4815ab 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -22,7 +22,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "base58ck" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin-internals", "bitcoin_hashes 0.15.0", diff --git a/base58/CHANGELOG.md b/base58/CHANGELOG.md index b219fb477..9bd3876aa 100644 --- a/base58/CHANGELOG.md +++ b/base58/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.2.0 - 2024-12-10 + +- Bump MSRV to `1.63` [#3100](https://github.com/rust-bitcoin/rust-bitcoin/pull/3100) +- Optimize `base58` on small inputs [#3002](https://github.com/rust-bitcoin/rust-bitcoin/pull/3002) +- Add `alloc` feature [#2996](https://github.com/rust-bitcoin/rust-bitcoin/pull/2996) +- Remove zeroed vector by pushing front [#3227](https://github.com/rust-bitcoin/rust-bitcoin/pull/3227) +- Close all errors [#3533](https://github.com/rust-bitcoin/rust-bitcoin/pull/3533) +- Bump `hex-conservative` to `0.3.0` [#3543](https://github.com/rust-bitcoin/rust-bitcoin/pull/3543) + # 0.1.0 - 2024-03-14 Initial release of the `base58ck` crate. This crate was cut out of diff --git a/base58/Cargo.toml b/base58/Cargo.toml index 198b91bf4..4cc082301 100644 --- a/base58/Cargo.toml +++ b/base58/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "base58ck" -version = "0.1.0" +version = "0.2.0" authors = ["Andrew Poelstra "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/" diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index d17b7a705..955add7e4 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -25,7 +25,7 @@ secp-recovery = ["secp256k1/recovery"] arbitrary = ["dep:arbitrary", "units/arbitrary", "primitives/arbitrary"] [dependencies] -base58 = { package = "base58ck", version = "0.1.0", default-features = false, features = ["alloc"] } +base58 = { package = "base58ck", version = "0.2.0", default-features = false, features = ["alloc"] } bech32 = { version = "0.11.0", default-features = false, features = ["alloc"] } hashes = { package = "bitcoin_hashes", version = "0.15.0", default-features = false, features = ["alloc", "bitcoin-io", "hex"] } hex = { package = "hex-conservative", version = "0.3.0", default-features = false, features = ["alloc"] }