From 6b1c9571658122c27e11c6b8a24f20a661e97d1f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 4 Jun 2020 15:50:42 -0700 Subject: [PATCH] universal-hash v0.4.0 --- Cargo.lock | 2 +- universal-hash/CHANGELOG.md | 14 ++++++++++++++ universal-hash/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 393a4dec2..221607553 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -295,7 +295,7 @@ checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" [[package]] name = "universal-hash" -version = "0.4.0-pre" +version = "0.4.0" dependencies = [ "generic-array 0.14.1", "subtle", diff --git a/universal-hash/CHANGELOG.md b/universal-hash/CHANGELOG.md index e526404b9..1879015a6 100644 --- a/universal-hash/CHANGELOG.md +++ b/universal-hash/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.4.0 (2020-06-04) +### Added +- `Key` and `Block` type aliases ([#128]) + +### Changed +- Split `UniversalHash` initialization into `NewUniversalHash` trait ([#135]) +- Rename `update_block` => `update` ([#129]) +- Bump `generic-array` dependency to v0.14 ([#95]) + +[#135]: https://github.com/RustCrypto/traits/pull/135 +[#129]: https://github.com/RustCrypto/traits/pull/129 +[#128]: https://github.com/RustCrypto/traits/pull/128 +[#95]: https://github.com/RustCrypto/traits/pull/95 + ## 0.3.0 (2019-10-03) - Rename `OutputSize` -> `BlockSize` ([#57]) diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index 963e01773..143e5f8cd 100644 --- a/universal-hash/Cargo.toml +++ b/universal-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "universal-hash" -version = "0.4.0-pre" +version = "0.4.0" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Trait for universal hash functions"