Skip to content

Commit 2c92a59

Browse files
committed
0.7.4
1 parent 2cd12ef commit 2c92a59

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Recent Changes (arrayvec)
22
=========================
33

4+
## 0.7.4
5+
6+
- Add feature zeroize to support the `Zeroize` trait by @elichai
7+
48
## 0.7.3
59

610
- Use track_caller on multiple methods like push and similar, for capacity

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arrayvec"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
authors = ["bluss"]
55
license = "MIT OR Apache-2.0"
66
edition = "2018"
@@ -49,7 +49,7 @@ debug = true
4949
debug = true
5050

5151
[package.metadata.docs.rs]
52-
features = ["serde"]
52+
features = ["serde", "zeroize"]
5353

5454
[package.metadata.release]
5555
no-dev-version = true

LICENSE-MIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) Ulrik Sverdrup "bluss" 2015-2017
1+
Copyright (c) Ulrik Sverdrup "bluss" 2015-2023
22

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

src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
//! - Optional
1212
//! - Enable serialization for ArrayVec and ArrayString using serde 1.x
1313
//!
14+
//! - `zeroize`
15+
//! - Optional
16+
//! - Implement `Zeroize` for ArrayVec and ArrayString
17+
//!
1418
//! ## Rust Version
1519
//!
1620
//! This version of arrayvec requires Rust 1.51 or later.

0 commit comments

Comments
 (0)