From 739f19912d939bd72938e12d529f3def955440fd Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 10 Jun 2023 11:02:23 -0600 Subject: [PATCH] k12 v0.3.0 --- k12/CHANGELOG.md | 12 ++++++++++++ k12/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/k12/CHANGELOG.md b/k12/CHANGELOG.md index 1988dcc1f..381891b74 100644 --- a/k12/CHANGELOG.md +++ b/k12/CHANGELOG.md @@ -5,6 +5,18 @@ 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.3.0 (2023-06-10) +### Added +- Support for heapless `no_std` targets ([#353]) + +### Changed +- Use TurboSHAKE implementation from `sha3` ([#353]) +- Properly implement `XofReader` ([#353]) +- 2021 edition upgrade; MSRV 1.56 ([#487]) + +[#353]: https://github.com/RustCrypto/hashes/pull/353 +[#487]: https://github.com/RustCrypto/hashes/pull/487 + ## 0.2.1 (2022-02-17) ### Fixed - Minimal versions build ([#363]) diff --git a/k12/Cargo.toml b/k12/Cargo.toml index 248a02a93..f0679ea53 100644 --- a/k12/Cargo.toml +++ b/k12/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k12" -version = "0.3.0-pre" +version = "0.3.0" description = "Pure Rust implementation of the KangarooTwelve hash function" authors = ["RustCrypto Developers", "Diggory Hardy "] license = "Apache-2.0 OR MIT"