diff --git a/CHANGELOG.md b/CHANGELOG.md index 6167b3c056..246d823604 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.9.0] - 2025-04-28 + ### Added - Added `bytes::Buf` and `bytes::BufMut` implementations for `Vec`. @@ -66,7 +68,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - `Vec::extend_from_slice` - `Vec::from_slice` - `Vec::resize_default` -> * [ ] Remove `Q*` type aliases for `MpMcQueue`, and rename it to just `Queue` - `Vec::resize` - Renamed `FromUtf16Error::DecodeUtf16Error` to `FromUtf16Error::DecodeUtf16`. - Changed `stable_deref_trait` to a platform-dependent dependency. @@ -96,6 +97,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - The `MpMcQueue` type has been renamed to `Queue`. - The `MpMcQueueView` type has been renamed to `QueueView`. - The `MpMcQueueInner` type has been renamed to `QueueInner`. +- Remove `Q*` type aliases for `MpMcQueue`, and rename it to just `Queue` - Changed `Queue::split` to be `const`. ### Fixed @@ -673,7 +675,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.9.0...HEAD +[v0.9.0]: https://github.com/rust-embedded/heapless/compare/v0.8.0...v0.9.0 [v0.8.0]: https://github.com/rust-embedded/heapless/compare/v0.7.16...v0.8.0 [v0.7.16]: https://github.com/rust-embedded/heapless/compare/v0.7.15...v0.7.16 [v0.7.15]: https://github.com/rust-embedded/heapless/compare/v0.7.14...v0.7.15 diff --git a/Cargo.toml b/Cargo.toml index ffafc5c538..b259387798 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["static", "no-heap"] license = "MIT OR Apache-2.0" name = "heapless" repository = "https://github.com/rust-embedded/heapless" -version = "0.8.0" +version = "0.9.0" [features] bytes = ["dep:bytes"]