From fde68472b3573d402b57154fcd17c96085787ffd Mon Sep 17 00:00:00 2001 From: Christian Poveda Date: Thu, 20 Mar 2025 13:38:58 -0500 Subject: [PATCH] Update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcfc3d01..03c4e1c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Changed `stable_deref_trait` to a platform-dependent dependency. - Changed `SortedLinkedList::pop` return type from `Result` to `Option` to match `std::vec::pop`. +- `Vec::capacity` is no longer a `const` function. ### Fixed @@ -56,6 +57,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Fixed `MpMcQueue` with `mpmc_large` feature. - Fix missing `Drop` for `MpMcQueue` +### Removed + +- `Vec::storage_capacity` has been removed and `Vec::capacity` must be used instead. + ## [v0.8.0] - 2023-11-07 ### Added