Skip to content

Commit e0020c5

Browse files
authored
Release block-padding v0.4.0 (#1233)
### Added - `Padding::pad_detached` method ([#1225]) ### Changed - Migrated from `generic-array` to `hybrid-array` ([#944]) - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) - Merged `RawPadding` and `Padding` traits ([#1217]) - Renamed `UnpadError` to `Error` ([#1225]) ### Removed - `Block` type alias ([#1217]) - `PadType` enum and associated type on the `Padding` trait ([#1225]) [#944]: #944 [#1149]: #1149 [#1217]: #1217 [#1225]: #1225
1 parent c9f7bfe commit e0020c5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

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

block-padding/CHANGELOG.md

Lines changed: 1 addition & 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-
## 0.4.0 (unreleased)
7+
## 0.4.0 (2025-10-06)
88
### Added
99
- `Padding::pad_detached` method ([#1225])
1010

block-padding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block-padding"
3-
version = "0.4.0-rc.4"
3+
version = "0.4.0"
44
description = "Padding and unpadding of messages divided into blocks."
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

inout/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["custom-reference"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
block-padding = { version = "0.4.0-rc.4", path = "../block-padding", optional = true }
15+
block-padding = { version = "0.4.0", path = "../block-padding", optional = true }
1616
hybrid-array = "0.4"
1717

1818
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)