From 73de5b946c7d6ba4bf2d02563e6947679ec603f7 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Fri, 4 Feb 2022 23:48:52 +0000 Subject: [PATCH] block-buffer: release v0.10.1 (#729) --- Cargo.lock | 2 +- block-buffer/CHANGELOG.md | 8 +++++++- block-buffer/Cargo.toml | 2 +- block-buffer/src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50b2e1bb..491ddf19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ dependencies = [ [[package]] name = "block-buffer" -version = "0.10.0" +version = "0.10.1" dependencies = [ "generic-array", ] diff --git a/block-buffer/CHANGELOG.md b/block-buffer/CHANGELOG.md index b7c27fce..0b46ecfb 100644 --- a/block-buffer/CHANGELOG.md +++ b/block-buffer/CHANGELOG.md @@ -4,7 +4,13 @@ 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.10.0 (2020-12-07) +## 0.10.1 (2021-02-05) +### Fixed +- Use `as_mut_ptr` to get a pointer for mutation in the `set_data` method ([#728]) + +[#728]: https://github.com/RustCrypto/utils/pull/728 + +## 0.10.0 (2020-12-07) [YANKED] ### Changed - Significant reduction of number of unreachable panics. ([#671]) - Added buffer kind type parameter to `BlockBuffer`, respective marker types, and type aliases. ([#671]) diff --git a/block-buffer/Cargo.toml b/block-buffer/Cargo.toml index 62ca06bd..f30ef89e 100644 --- a/block-buffer/Cargo.toml +++ b/block-buffer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "block-buffer" -version = "0.10.0" # Also update html_root_url in lib.rs when bumping this +version = "0.10.1" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Buffer type for block processing of data" diff --git a/block-buffer/src/lib.rs b/block-buffer/src/lib.rs index b156bef8..5b0adf5b 100644 --- a/block-buffer/src/lib.rs +++ b/block-buffer/src/lib.rs @@ -3,7 +3,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg", - html_root_url = "https://docs.rs/block-buffer/0.10.0" + html_root_url = "https://docs.rs/block-buffer/0.10.1" )] #![warn(missing_docs, rust_2018_idioms)]