Skip to content

Commit 1ea42bb

Browse files
authored
zeroize_derive v1.5.0 (#1492)
## Changed - Edition changed to 2024 and MSRV bumped to 1.85 (#1149) ## Fixed - Unnecessary qualifications (#1072) - Rust 1.92 warnings (#1270)
1 parent 8d785d1 commit 1ea42bb

7 files changed

Lines changed: 15 additions & 8 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ on:
1515
'hex-literal-v*',
1616
'inout-v*',
1717
'sponge-cursor-v*',
18-
'zeroize-v*'
18+
'zeroize-v*',
19+
'zeroize_derive-v*'
1920
]
2021

2122
jobs:

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/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ even WASM!
1919
"""
2020

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

2525
[features]
2626
default = ["alloc"]

zeroize/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018-2025 The RustCrypto Project Developers
1+
Copyright (c) 2018-2026 The RustCrypto Project Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

zeroize_derive/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ 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.5.0 (unreleased)
7+
## 1.5.0 (2026-06-12)
88
### Changed
99
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1149])
1010

11+
### Fixed
12+
- Unnecessary qualifications ([#1072])
13+
- Rust 1.92 warnings ([#1270])
14+
1115
[#1149]: https://github.com/RustCrypto/utils/pull/1149
16+
[#1072]: https://github.com/RustCrypto/utils/pull/1072
17+
[#1270]: https://github.com/RustCrypto/utils/pull/1270
1218

1319
## 1.4.2 (2023-03-30)
1420
### Changed

zeroize_derive/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_derive"
3-
version = "1.5.0-pre"
3+
version = "1.5.0"
44
authors = ["The RustCrypto Project Developers"]
55
edition = "2024"
66
rust-version = "1.85"

zeroize_derive/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019-2025 The RustCrypto Project Developers
1+
Copyright (c) 2019-2026 The RustCrypto Project Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

0 commit comments

Comments
 (0)