From 5a38b2180a659801b5fa4b6bcea9638f7f858a48 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 28 May 2024 13:45:13 -0600 Subject: [PATCH] base32ct v0.2.1 --- Cargo.lock | 2 +- base32ct/CHANGELOG.md | 10 ++++++++++ base32ct/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9eaff030..7071848f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,7 @@ checksum = "d1ce0365f4d5fb6646220bb52fe547afd51796d90f914d4063cb0b032ebee088" [[package]] name = "base32ct" -version = "0.2.0" +version = "0.2.1" dependencies = [ "base32", "proptest", diff --git a/base32ct/CHANGELOG.md b/base32ct/CHANGELOG.md index c6a0db493..ba8ccf5da 100644 --- a/base32ct/CHANGELOG.md +++ b/base32ct/CHANGELOG.md @@ -4,6 +4,16 @@ 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). +## 0.2.1 (2024-05-28) +### Added +- Support for Base32 upper unpadded alphabet ([#1406]) + +### Fixed +- Broken encoding of unpadded base32 ([#1421]) + +[#1406]: https://github.com/RustCrypto/formats/pull/1406 +[#1421]: https://github.com/RustCrypto/formats/pull/1421 + ## 0.2.0 (2023-02-26) ### Changed - MSRV 1.60 ([#802]) diff --git a/base32ct/Cargo.toml b/base32ct/Cargo.toml index b0aac443b..54004d3df 100644 --- a/base32ct/Cargo.toml +++ b/base32ct/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "base32ct" -version = "0.2.0" +version = "0.2.1" description = """ Pure Rust implementation of Base32 (RFC 4648) which avoids any usages of data-dependent branches/LUTs and thereby provides portable "best effort"