From c206b15fcb2055dab2ce209a800b0db787740577 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 29 Mar 2026 09:48:18 -0600 Subject: [PATCH] hmac v0.13.0 --- Cargo.lock | 2 +- hmac/CHANGELOG.md | 13 +++++++++---- hmac/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7b047e8..fa677c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,7 +178,7 @@ checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1" [[package]] name = "hmac" -version = "0.13.0-rc.6" +version = "0.13.0" dependencies = [ "digest", "hex-literal", diff --git a/hmac/CHANGELOG.md b/hmac/CHANGELOG.md index 003f27a..de96f2b 100644 --- a/hmac/CHANGELOG.md +++ b/hmac/CHANGELOG.md @@ -5,20 +5,25 @@ 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.13.0 (UNRELEASED) +## 0.13.0 (2026-03-29) ### Added -- `HmacReset` and `SimpleHmacReset` types [#186] +- `HmacReset` and `SimpleHmacReset` types ([#186]) ### Changed -- Edition changed to 2024 and MSRV bumped to 1.85 +- Use `EagerHash` trait for bounds ([#151], [#212]) +- Edition changed to 2024 and MSRV bumped to 1.85 ([#178]) - Relax MSRV policy and allow MSRV bumps in patch releases -- Update to `digest` v0.11 +- Update to `digest` v0.11 ([#243]) - Replace type aliases with newtypes ([#186]) ### Removed - `std` and `reset` crate features ([#186]) +[#151]: https://github.com/RustCrypto/MACs/pull/151 +[#178]: https://github.com/RustCrypto/MACs/pull/178 [#186]: https://github.com/RustCrypto/MACs/pull/186 +[#212]: https://github.com/RustCrypto/MACs/pull/212 +[#243]: https://github.com/RustCrypto/MACs/pull/243 ## 0.12.1 (2022-02-17) ### Fixed diff --git a/hmac/Cargo.toml b/hmac/Cargo.toml index 02e82c6..e94b0ba 100644 --- a/hmac/Cargo.toml +++ b/hmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hmac" -version = "0.13.0-rc.6" +version = "0.13.0" description = "Generic implementation of Hash-based Message Authentication Code (HMAC)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"