From 18f26c14113a56faec83ac229e04f0b8569377f9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 9 Jun 2020 19:26:56 -0700 Subject: [PATCH] sha2 v0.9.0 --- Cargo.lock | 2 +- sha2/CHANGELOG.md | 14 ++++++++++++++ sha2/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 930e97109..18185a624 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,7 +252,7 @@ dependencies = [ [[package]] name = "sha2" -version = "0.9.0-pre" +version = "0.9.0" dependencies = [ "block-buffer", "digest", diff --git a/sha2/CHANGELOG.md b/sha2/CHANGELOG.md index b82301a03..7ae614dd7 100644 --- a/sha2/CHANGELOG.md +++ b/sha2/CHANGELOG.md @@ -5,6 +5,20 @@ 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.9.0 (2020-06-09) +### Changed +- Update to `digest` v0.9 release; MSRV 1.41+ ([#155]) +- Use new `*Dirty` traits from the `digest` crate ([#153]) +- Bump `block-buffer` to v0.8 release ([#151]) +- Rename `*result*` to `finalize` ([#148]) +- Upgrade to Rust 2018 edition ([#133]) + +[#155]: https://github.com/RustCrypto/hashes/pull/155 +[#153]: https://github.com/RustCrypto/hashes/pull/153 +[#151]: https://github.com/RustCrypto/hashes/pull/151 +[#148]: https://github.com/RustCrypto/hashes/pull/148 +[#133]: https://github.com/RustCrypto/hashes/pull/133 + ## 0.8.2 (2020-05-23) ### Added - Expose compression function under the `compress` feature flag ([#108]) diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index f3a73cdfe..2dc0bcbe9 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2" -version = "0.9.0-pre" +version = "0.9.0" description = """ Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512.