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
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.

2 changes: 1 addition & 1 deletion zeroize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.56"

[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
zeroize_derive = { version = "=1.4.0-pre", path = "derive", optional = true }
zeroize_derive = { version = "1.3", path = "derive", optional = true }

[features]
default = ["alloc"]
Expand Down
11 changes: 11 additions & 0 deletions zeroize/derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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.4.0 (2023-03-26)
### Changed
- 2021 edition upgrade; MSRV 1.56 ([#869])
- Bump `syn` to v2 ([#858])

### Removed
- `synstructure` dependency ([#858])

[#858]: https://github.com/RustCrypto/utils/pull/858
[#869]: https://github.com/RustCrypto/utils/pull/869

## 1.3.3 (2022-11-30)
### Fixed
- Deriving `ZeroizeOnDrop` on items with generics ([#787])
Expand Down
2 changes: 1 addition & 1 deletion zeroize/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zeroize_derive"
description = "Custom derive support for zeroize"
version = "1.4.0-pre"
version = "1.4.0"
authors = ["The RustCrypto Project Developers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/utils/tree/master/zeroize/derive"
Expand Down
2 changes: 1 addition & 1 deletion zeroize/derive/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2021 The RustCrypto Project Developers
Copyright (c) 2019-2023 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down