base58ck: Bump version to 0.2.0

In preparation for release add a changelog entry, bump the version, and
update the lock files.
This commit is contained in:
Tobin C. Harding 2024-12-10 13:46:14 +11:00
parent f8136abdb1
commit 5b3e4ab95b
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
5 changed files with 13 additions and 4 deletions

View File

@ -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",

View File

@ -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",

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "base58ck"
version = "0.1.0"
version = "0.2.0"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

View File

@ -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"] }