Skip to content

Commit 0b71573

Browse files
authored
zeroize v1.9.0 (#1494)
## Added - `Zeroizing` is now `repr(transparent)` ([#1253]) - `optimization_barrier` function ([#1261]) - `Zeroizing` now supports `?Sized` ([#1318]) - `zeroize_stack` function ([#1331]) ## Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) - Replace `atomic_fence` with `optimization_barrier` ([#1252]) - Bump `zeroize_derive` to v1.5 ([#1492]) - Always enable AVX-512 support ([#1493]) [#1149]: #1149 [#1252]: #1252 [#1253]: #1253 [#1261]: #1261 [#1318]: #1318 [#1331]: #1331 [#1492]: #1492 [#1493]: #1493
1 parent 3e3f18c commit 0b71573

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zeroize/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,27 @@ 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-
## 1.9.0 (unreleased)
7+
## 1.9.0 (2026-06-12)
88
### Added
9+
- `Zeroizing` is now `repr(transparent)` ([#1253])
910
- `optimization_barrier` function ([#1261])
11+
- `Zeroizing` now supports `?Sized` ([#1318])
1012
- `zeroize_stack` function ([#1331])
1113

1214
### Changed
1315
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1149])
16+
- Replace `atomic_fence` with `optimization_barrier` ([#1252])
17+
- Bump `zeroize_derive` to v1.5 ([#1492])
18+
- Always enable AVX-512 support ([#1493])
1419

1520
[#1149]: https://github.com/RustCrypto/utils/pull/1149
21+
[#1252]: https://github.com/RustCrypto/utils/pull/1252
22+
[#1253]: https://github.com/RustCrypto/utils/pull/1253
1623
[#1261]: https://github.com/RustCrypto/utils/pull/1261
24+
[#1318]: https://github.com/RustCrypto/utils/pull/1318
1725
[#1331]: https://github.com/RustCrypto/utils/pull/1331
26+
[#1492]: https://github.com/RustCrypto/utils/pull/1492
27+
[#1493]: https://github.com/RustCrypto/utils/pull/1493
1828

1929
## 1.8.2 (2025-09-29)
2030
### Changed

zeroize/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zeroize"
3-
version = "1.9.0-pre"
3+
version = "1.9.0"
44
authors = ["The RustCrypto Project Developers"]
55
edition = "2024"
66
rust-version = "1.85"

0 commit comments

Comments
 (0)