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:
parent
f8136abdb1
commit
5b3e4ab95b
|
@ -22,7 +22,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "base58ck"
|
name = "base58ck"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitcoin-internals",
|
"bitcoin-internals",
|
||||||
"bitcoin_hashes 0.15.0",
|
"bitcoin_hashes 0.15.0",
|
||||||
|
|
|
@ -22,7 +22,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "base58ck"
|
name = "base58ck"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitcoin-internals",
|
"bitcoin-internals",
|
||||||
"bitcoin_hashes 0.15.0",
|
"bitcoin_hashes 0.15.0",
|
||||||
|
|
|
@ -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
|
# 0.1.0 - 2024-03-14
|
||||||
|
|
||||||
Initial release of the `base58ck` crate. This crate was cut out of
|
Initial release of the `base58ck` crate. This crate was cut out of
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "base58ck"
|
name = "base58ck"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||||
|
|
|
@ -25,7 +25,7 @@ secp-recovery = ["secp256k1/recovery"]
|
||||||
arbitrary = ["dep:arbitrary", "units/arbitrary", "primitives/arbitrary"]
|
arbitrary = ["dep:arbitrary", "units/arbitrary", "primitives/arbitrary"]
|
||||||
|
|
||||||
[dependencies]
|
[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"] }
|
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"] }
|
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"] }
|
hex = { package = "hex-conservative", version = "0.3.0", default-features = false, features = ["alloc"] }
|
||||||
|
|
Loading…
Reference in New Issue