Update changelog

This commit is contained in:
Christian Poveda 2025-03-20 13:38:58 -05:00
parent 08f403fc3e
commit fde68472b3
No known key found for this signature in database
GPG Key ID: 3B422F347D81A9E8

View File

@ -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<T, ()>` to `Option<T>` 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