Skip to content

Commit bef1d6d

Browse files
authored
Release block-buffer v0.11.0 (#1246)
### Added - `ReadBuffer` type ([#823]) - Optional implementation of the `Zeroize` trait ([#963]) - Generic `serialize` and `deserialize` methods ([#1200]) - `ReadBuffer::{read_cached, write_block, reset}` methods ([#1201]) ### Changed - Block sizes must be bigger than 0 and smaller than 256. This is enforced using compile-time monomorphization errors. ([#1115]) - Size of `EagerBuffer` is equal to buffer size, while previously it was equal to buffer size plus one byte ([#823]) - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) ### Removed - `EagerBuffer::set_data` method. Use the `ReadBuffer` type instead. ([#823]) [#823]: #823 [#963]: #963 [#1115]: #1115 [#1115]: #1116 [#1149]: #1149 [#1200]: #1200 [#1201]: #1201
1 parent 5c88fe4 commit bef1d6d

File tree

3 files changed

+25
-24
lines changed

3 files changed

+25
-24
lines changed

Cargo.lock

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

block-buffer/CHANGELOG.md

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

7-
## UNRELEASED
7+
## 0.11.0 (2025-11-07)
88
### Added
99
- `ReadBuffer` type ([#823])
1010
- Optional implementation of the `Zeroize` trait ([#963])
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
### Removed
2222
- `EagerBuffer::set_data` method. Use the `ReadBuffer` type instead. ([#823])
2323

24+
[#823]: https://github.com/RustCrypto/utils/pull/823
2425
[#963]: https://github.com/RustCrypto/utils/pull/963
2526
[#1115]: https://github.com/RustCrypto/utils/pull/1115
2627
[#1115]: https://github.com/RustCrypto/utils/pull/1116

block-buffer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block-buffer"
3-
version = "0.11.0-rc.5"
3+
version = "0.11.0"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -10,7 +10,7 @@ repository = "https://github.com/RustCrypto/utils"
1010
license = "MIT OR Apache-2.0"
1111
keywords = ["block", "buffer"]
1212
categories = ["cryptography", "no-std"]
13-
description = "Buffer type for block processing of data"
13+
description = "Buffer types for block processing of data"
1414

1515
[dependencies]
1616
hybrid-array = "0.4"

0 commit comments

Comments
 (0)