From dfc3abe9fe9efba8d59c5f582e7e6b61f56b7a88 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 13 Mar 2025 09:18:55 -0600 Subject: [PATCH] base64ct v1.7.2 --- base64ct/CHANGELOG.md | 6 ++++++ base64ct/Cargo.lock | 2 +- base64ct/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/base64ct/CHANGELOG.md b/base64ct/CHANGELOG.md index 2494449fa..06e438ef7 100644 --- a/base64ct/CHANGELOG.md +++ b/base64ct/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.7.2 (2025-03-13) +### Changed +- Revert [#1387]: reject zero-length decode requests as it's a breaking change ([#1714]) + +[#1714]: https://github.com/RustCrypto/formats/pull/1714 + ## 1.7.1 (2025-03-10) ### Changed - MSRV 1.81 - edition downgraded to 2021 from yanked 1.7.0 release ([#1702]) diff --git a/base64ct/Cargo.lock b/base64ct/Cargo.lock index 1c5c0095d..c5a12921d 100644 --- a/base64ct/Cargo.lock +++ b/base64ct/Cargo.lock @@ -16,7 +16,7 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.7.1" +version = "1.7.2" dependencies = [ "base64", "proptest", diff --git a/base64ct/Cargo.toml b/base64ct/Cargo.toml index 7f24e3371..9da72e3f0 100644 --- a/base64ct/Cargo.toml +++ b/base64ct/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "base64ct" -version = "1.7.1" +version = "1.7.2" description = """ Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of data-dependent branches/LUTs and thereby provides portable "best effort"