From 2c92a59bed0d1669cede3806000d2e61d5994c4e Mon Sep 17 00:00:00 2001 From: Ulrik Sverdrup Date: Sat, 17 Jun 2023 21:58:14 +0200 Subject: [PATCH] 0.7.4 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- LICENSE-MIT | 2 +- src/lib.rs | 4 ++++ 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cafd7075..40a646a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Recent Changes (arrayvec) ========================= +## 0.7.4 + +- Add feature zeroize to support the `Zeroize` trait by @elichai + ## 0.7.3 - Use track_caller on multiple methods like push and similar, for capacity diff --git a/Cargo.toml b/Cargo.toml index 98f1684a..5f4fd2cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.7.3" +version = "0.7.4" authors = ["bluss"] license = "MIT OR Apache-2.0" edition = "2018" @@ -49,7 +49,7 @@ debug = true debug = true [package.metadata.docs.rs] -features = ["serde"] +features = ["serde", "zeroize"] [package.metadata.release] no-dev-version = true diff --git a/LICENSE-MIT b/LICENSE-MIT index 2c8f27db..db4c0673 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (c) Ulrik Sverdrup "bluss" 2015-2017 +Copyright (c) Ulrik Sverdrup "bluss" 2015-2023 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated diff --git a/src/lib.rs b/src/lib.rs index 5dc0273a..f9a2fe68 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,6 +11,10 @@ //! - Optional //! - Enable serialization for ArrayVec and ArrayString using serde 1.x //! +//! - `zeroize` +//! - Optional +//! - Implement `Zeroize` for ArrayVec and ArrayString +//! //! ## Rust Version //! //! This version of arrayvec requires Rust 1.51 or later.