This commit is contained in:
bluss
2021-10-28 18:53:54 +02:00
parent a4690c9389
commit 67ec907a98
2 changed files with 15 additions and 1 deletions
+14
View File
@@ -1,6 +1,20 @@
Recent Changes (arrayvec) Recent Changes (arrayvec)
========================= =========================
## 0.7.2
- Add `.as_mut_str()` to `ArrayString` by @clarfonthey
- Add `remaining_capacity` to `ArrayString` by @bhgomes
- Add `zero_filled` constructor by @c410-f3r
- Optimize `retain` by @TennyZhuang and @niklasf
- Make the following methods `const` by @bhgomes:
- len
- is_empty
- capacity
- is_full
- remaining_capacity
- CapacityError::new
## 0.7.1 ## 0.7.1
- Add new ArrayVec methods `.take()` and `.into_inner_unchecked()` by @conradludgate - Add new ArrayVec methods `.take()` and `.into_inner_unchecked()` by @conradludgate
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "arrayvec" name = "arrayvec"
version = "0.7.1" version = "0.7.2"
authors = ["bluss"] authors = ["bluss"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"