diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba6db3..5166fbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,16 @@ Recent Changes (arrayvec) ## 0.6.0 - The **const generics** release 🎉. Arrayvec finally implements what it - wanted to implement all along, since its first version; a vector backed by - and array, with generic parameters for the arbitrary element type - and backing array capacity. + wanted to implement, since its first version: a vector backed by an array, + with generic parameters for the arbitrary element type *and* backing array + capacity. - New type syntax is `ArrayVec` where CAP is the arrayvec capacity. + The New type syntax is `ArrayVec` where `CAP` is the arrayvec capacity. For arraystring the syntax is `ArrayString`. - By @bluss. + Change by @bluss. - Arrayvec's `.extend()` and `FromIterator`/`.collect()` to arrayvec now - **panic** if the capacity of the arrayvec is exceeded. By @bluss. + **panic** if the capacity of the arrayvec is exceeded. Change by @bluss. - Arraystring now implements `TryFrom<&str>` and `TryFrom` by @c410-f3r @@ -71,6 +71,8 @@ Recent Changes (arrayvec) - Require Rust 1.36 or later, for the unconditional `MaybeUninit` improvements. +## Older releases + - 0.4.11 - In Rust 1.36 or later, use newly stable `MaybeUninit`. This extends the