From 92b476a4864122b2013433cb1bce89a9c13e561d Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Tue, 22 Apr 2025 22:32:59 +0200 Subject: [PATCH] Release 0.9.0 Fixes #529. --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da8e3430..246d8236 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`. @@ -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 ffafc5c5..b2593877 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"]