Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.9.3] 2025-04-15

- Fixed unsoundness in `Deque::clear`, `HistoryBuf::clear` and `IndexMap::clear` in the context
of panicking drop implementations.
- Added `from_bytes_truncating_at_nul` to `CString`
Expand All @@ -19,9 +21,6 @@ of panicking drop implementations.
- Added `from_bytes_truncating_at_nul` to `CString`
- Added missing `?Sized` bounds in `PartialEq` implementations
- Make `PartialEq` implementation for `DequeInner` and `HistoryBufInner` generic over the storage of the RHS

## [v0.9.2] 2025-11-12

- Minor fixes to module docs.
- Make MSRV of 1.87.0 explicit.
- Implement `Default` for `CapacityError`.
Expand Down Expand Up @@ -742,7 +741,8 @@ of panicking drop implementations.

- Initial release

[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.9.2...HEAD
[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.9.3...HEAD
[v0.9.3]: https://github.com/rust-embedded/heapless/compare/v0.9.2...v0.9.3
[v0.9.2]: https://github.com/rust-embedded/heapless/compare/v0.9.1...v0.9.2
[v0.9.1]: https://github.com/rust-embedded/heapless/compare/v0.9.0...v0.9.1
[v0.9.0]: https://github.com/rust-embedded/heapless/compare/v0.8.0...v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["static", "no-heap"]
license = "MIT OR Apache-2.0"
name = "heapless"
repository = "https://github.com/rust-embedded/heapless"
version = "0.9.2"
version = "0.9.3"

[features]
bytes = ["dep:bytes"]
Expand Down
Loading