diff --git a/CHANGELOG.md b/CHANGELOG.md index cafd707..40a646a 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 98f1684..5f4fd2c 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 2c8f27d..db4c067 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 5dc0273..f9a2fe6 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.