Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ on:
'hex-literal-v*',
'inout-v*',
'sponge-cursor-v*',
'zeroize-v*'
'zeroize-v*',
'zeroize_derive-v*'
]

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions zeroize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ even WASM!
"""

[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
zeroize_derive = { version = "1.5.0-pre", optional = true }
serde = { version = "1", default-features = false, optional = true }
zeroize_derive = { version = "1.5", optional = true }

[features]
default = ["alloc"]
Expand Down
2 changes: 1 addition & 1 deletion zeroize/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018-2025 The RustCrypto Project Developers
Copyright (c) 2018-2026 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
8 changes: 7 additions & 1 deletion zeroize_derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ 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).

## 1.5.0 (unreleased)
## 1.5.0 (2026-06-12)
### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1149])

### Fixed
- Unnecessary qualifications ([#1072])
- Rust 1.92 warnings ([#1270])

[#1149]: https://github.com/RustCrypto/utils/pull/1149
[#1072]: https://github.com/RustCrypto/utils/pull/1072
[#1270]: https://github.com/RustCrypto/utils/pull/1270

## 1.4.2 (2023-03-30)
### Changed
Expand Down
2 changes: 1 addition & 1 deletion zeroize_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zeroize_derive"
version = "1.5.0-pre"
version = "1.5.0"
authors = ["The RustCrypto Project Developers"]
edition = "2024"
rust-version = "1.85"
Expand Down
2 changes: 1 addition & 1 deletion zeroize_derive/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2019-2025 The RustCrypto Project Developers
Copyright (c) 2019-2026 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
Loading