From 5712ed09ad237e21072e9474dcd4aad6691b2ffa Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 9 Jun 2020 21:28:59 -0700 Subject: [PATCH] k12 v0.1.0 (#159) --- Cargo.lock | 2 +- k12/CHANGELOG.md | 14 ++++++++++++++ k12/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d750228c..d1c9fec6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -137,7 +137,7 @@ dependencies = [ [[package]] name = "k12" -version = "0.1.0-pre" +version = "0.1.0" dependencies = [ "digest", "hex-literal", diff --git a/k12/CHANGELOG.md b/k12/CHANGELOG.md index c8cb3ad00..da46bb91a 100644 --- a/k12/CHANGELOG.md +++ b/k12/CHANGELOG.md @@ -5,5 +5,19 @@ 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.1.0 (2020-06-09) +### Changed +- Update to `digest` v0.9 release; MSRV 1.41+ ([#155]) +- Use `digest` crate's `alloc` feature ([#150]) +- Impl the `ExtendableOutput` trait ([#149]) +- Rename `*result*` to `finalize` ([#148]) +- Upgrade to Rust 2018 edition ([#123]) + +[#155]: https://github.com/RustCrypto/hashes/pull/155 +[#150]: https://github.com/RustCrypto/hashes/pull/150 +[#149]: https://github.com/RustCrypto/hashes/pull/149 +[#148]: https://github.com/RustCrypto/hashes/pull/148 +[#123]: https://github.com/RustCrypto/hashes/pull/123 + ## 0.0.1 (2020-05-24) - Initial release diff --git a/k12/Cargo.toml b/k12/Cargo.toml index b87c085ba..7b227d4dd 100644 --- a/k12/Cargo.toml +++ b/k12/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k12" -version = "0.1.0-pre" +version = "0.1.0" description = "Experimental pure Rust implementation of the KangarooTwelve hash function" authors = ["Diggory Hardy "] license = "Apache-2.0 OR MIT"