This commit is contained in:
bluss
2021-06-05 15:13:37 +02:00
parent 515a18cc88
commit 0c866b32f0
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,6 +1,11 @@
Recent Changes (arrayvec)
=========================
## 0.7.1
- Add new ArrayVec methods `.take()` and `.into_inner_unchecked()` by @conradludgate
- `clone_from` now uses `truncate` when needed by @a1phyr
## 0.7.0
- `fn new_const` is now the way to const-construct arrayvec and arraystring,
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "arrayvec"
version = "0.7.0"
version = "0.7.1"
authors = ["bluss"]
license = "MIT OR Apache-2.0"
edition = "2018"
+1 -1
View File
@@ -15,7 +15,7 @@
//!
//! This version of arrayvec requires Rust 1.51 or later.
//!
#![doc(html_root_url="https://docs.rs/arrayvec/0.6/")]
#![doc(html_root_url="https://docs.rs/arrayvec/0.7/")]
#![cfg_attr(not(feature="std"), no_std)]
#[cfg(feature="serde")]