0.7.1
This commit is contained in:
@@ -1,6 +1,11 @@
|
|||||||
Recent Changes (arrayvec)
|
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
|
## 0.7.0
|
||||||
|
|
||||||
- `fn new_const` is now the way to const-construct arrayvec and arraystring,
|
- `fn new_const` is now the way to const-construct arrayvec and arraystring,
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "arrayvec"
|
name = "arrayvec"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["bluss"]
|
authors = ["bluss"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@
|
|||||||
//!
|
//!
|
||||||
//! This version of arrayvec requires Rust 1.51 or later.
|
//! 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_attr(not(feature="std"), no_std)]
|
||||||
|
|
||||||
#[cfg(feature="serde")]
|
#[cfg(feature="serde")]
|
||||||
|
|||||||
Reference in New Issue
Block a user