From 6216ebec7df73c899ad0d13f104414acb810dc3f Mon Sep 17 00:00:00 2001 From: Wim Looman Date: Tue, 23 May 2023 14:19:21 +0200 Subject: [PATCH] Prepare for 0.5.0 release --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e70e6b..88ede6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.5.0 - 2023-05-23 + * Breaking change: make encoding onto resizable buffers not clear them, instead appending onto any existing data * Breaking change: rename `into` methods to `onto` to allow for implementing `Into` in the future (or a similar inherent method) * Add new `cb58` feature to support injecting and verifying that checksum (by @Zondax) diff --git a/Cargo.lock b/Cargo.lock index 2cdf803..86d5c44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "bs58" -version = "0.4.0" +version = "0.5.0" dependencies = [ "assert_matches", "base58", diff --git a/Cargo.toml b/Cargo.toml index 0c14104..4bc8ed4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bs58" -version = "0.4.0" +version = "0.5.0" description = "Another Base58 codec implementation." repository = "https://github.com/Nullus157/bs58-rs" readme = "README.md" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b077948..2d779e6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -14,6 +14,6 @@ name = "bs58" path = "src/main.rs" [dependencies] -bs58 = { version = "0.4.0", path = ".." } +bs58 = { version = "0.5.0", path = ".." } structopt = { version = "0.3.21", default-features = false, features = ["color"] } anyhow = { version = "1.0.35", default-features = false, features = ["std"] }