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"