Skip to content

Commit

Permalink
0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Jun 17, 2023
1 parent 2cd12ef commit 2c92a59
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions 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
Expand Down
4 changes: 2 additions & 2 deletions 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"
Expand Down Expand Up @@ -49,7 +49,7 @@ debug = true
debug = true

[package.metadata.docs.rs]
features = ["serde"]
features = ["serde", "zeroize"]

[package.metadata.release]
no-dev-version = true
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Expand Up @@ -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.
Expand Down

0 comments on commit 2c92a59

Please sign in to comment.