Skip to content

Commit c478cbb

Browse files
authored
blake2: release v0.10.1 (#343)
1 parent b505bba commit c478cbb

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blake2/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.1 (2022-01-05)
9+
## Fixed
10+
- Compilation error with enabled `reset` feature. ([#342])
11+
12+
[#342]: https://github.com/RustCrypto/hashes/pull/342
13+
814
## 0.10.0 (2021-12-07)
915
### Changed
1016
- Update to `digest` v0.10 and remove dependency on `crypto-mac` ([#217])

blake2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blake2" # Also update html_root_url in lib.rs when bumping this
3-
version = "0.10.0" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.10.1" # Also update html_root_url in lib.rs when bumping this
44
description = "BLAKE2 hash functions"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

blake2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
#![doc(
7373
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
7474
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
75-
html_root_url = "https://docs.rs/blake2/0.10.0"
75+
html_root_url = "https://docs.rs/blake2/0.10.1"
7676
)]
7777
#![warn(missing_docs, rust_2018_idioms)]
7878
#![cfg_attr(feature = "simd", feature(platform_intrinsics, repr_simd))]

0 commit comments

Comments
 (0)