From c16c1be94680a9230dd95b477df1141653f0a0a9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 14 Mar 2024 15:14:04 +1100 Subject: [PATCH] base58: Add changelog In preparation for release add a minimal changelog to the `base58ck` crate. This crate is currently unreleased and has the version number correctly set to `v0.1.0` - as of today, the crate name `base58ck` is available on crates.io. --- base58/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 base58/CHANGELOG.md diff --git a/base58/CHANGELOG.md b/base58/CHANGELOG.md new file mode 100644 index 00000000..b219fb47 --- /dev/null +++ b/base58/CHANGELOG.md @@ -0,0 +1,4 @@ +# 0.1.0 - 2024-03-14 + +Initial release of the `base58ck` crate. This crate was cut out of +`rust-bitcoin` and cleaned up for release as a separate crate.