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)
=========================
## 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
- Add new ArrayVec methods `.take()` and `.into_inner_unchecked()` by @conradludgate