Skip to content

Commit 0c866b3

Browse files
committed
0.7.1
1 parent 515a18c commit 0c866b3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Recent Changes (arrayvec)
22
=========================
33

4+
## 0.7.1
5+
6+
- Add new ArrayVec methods `.take()` and `.into_inner_unchecked()` by @conradludgate
7+
- `clone_from` now uses `truncate` when needed by @a1phyr
8+
49
## 0.7.0
510

611
- `fn new_const` is now the way to const-construct arrayvec and arraystring,

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arrayvec"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["bluss"]
55
license = "MIT OR Apache-2.0"
66
edition = "2018"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//!
1616
//! This version of arrayvec requires Rust 1.51 or later.
1717
//!
18-
#![doc(html_root_url="https://docs.rs/arrayvec/0.6/")]
18+
#![doc(html_root_url="https://docs.rs/arrayvec/0.7/")]
1919
#![cfg_attr(not(feature="std"), no_std)]
2020

2121
#[cfg(feature="serde")]

0 commit comments

Comments
 (0)