Release 0.9.0

Fixes #529.
This commit is contained in:
Zeeshan Ali Khan 2025-04-22 22:32:59 +02:00
parent 481de1592c
commit 92b476a486
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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"]