From e14400697453bcc85997119b874bc03d9601d0af Mon Sep 17 00:00:00 2001 From: Marshall Pierce <575695+marshallpierce@users.noreply.github.com> Date: Tue, 30 Apr 2024 17:16:15 -0600 Subject: [PATCH] v0.22.1 --- Cargo.toml | 4 ++-- RELEASE-NOTES.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c2670d3..ea2d405 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "base64" -version = "0.22.0" -authors = ["Alice Maz ", "Marshall Pierce "] +version = "0.22.1" +authors = ["Marshall Pierce "] description = "encodes and decodes base64 as bytes or utf8" repository = "https://github.com/marshallpierce/rust-base64" documentation = "https://docs.rs/base64" diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 46e281e..91b68a6 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,7 @@ +# 0.22.1 + +- Correct the symbols used for the predefined `alphabet::BIN_HEX`. + # 0.22.0 - `DecodeSliceError::OutputSliceTooSmall` is now conservative rather than precise. That is, the error will only occur if the decoded output _cannot_ fit, meaning that `Engine::decode_slice` can now be used with exactly-sized output slices. As part of this, `Engine::internal_decode` now returns `DecodeSliceError` instead of `DecodeError`, but that is not expected to affect any external callers.