From 221d0548a0bc3b08fcf272f65a857d0591c9c862 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 3 Jan 2026 14:14:15 -0700 Subject: [PATCH] base64ct v1.8.2 --- Cargo.lock | 2 +- base64ct/CHANGELOG.md | 6 ++++++ base64ct/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3fb9e6f81..340601280 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -133,7 +133,7 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.8.1" +version = "1.8.2" dependencies = [ "base64", "proptest", diff --git a/base64ct/CHANGELOG.md b/base64ct/CHANGELOG.md index c216fb4a3..ebe7c3307 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.8.2 (2026-01-03) +### Changed +- Deprecate `Base64Crypt` ([#2135]) + +[#2135]: https://github.com/RustCrypto/formats/pull/2135 + ## 1.8.1 (2025-12-06) ### Added - Notes on `crypt(3)` alphabet variants ([#2073]) diff --git a/base64ct/Cargo.toml b/base64ct/Cargo.toml index 2ff1b957d..12387caea 100644 --- a/base64ct/Cargo.toml +++ b/base64ct/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "base64ct" -version = "1.8.1" +version = "1.8.2" description = """ Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of data-dependent branches/LUTs and thereby provides portable "best effort"