Skip to content

Commit

Permalink
Merge pull request #408 from rust-embedded/fix-pa-feature
Browse files Browse the repository at this point in the history
Release v0.8.0
  • Loading branch information
Dirbaio committed Nov 8, 2023
2 parents ac26e82 + f089e9c commit 9feb664
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion 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.8.0] - 2023-11-07

### Added

- Add `Clone` and `PartialEq` implementations to `HistoryBuffer`.
Expand Down Expand Up @@ -561,7 +563,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Initial release

[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.7.16...HEAD
[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.8.0...HEAD
[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
[v0.7.14]: https://github.com/rust-embedded/heapless/compare/v0.7.13...v0.7.14
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ version = "0.8.0"
portable-atomic = ["dep:portable-atomic"]

# Enable polyfilling of atomics via portable-atomic, using critical section for locking
portable-atomic-critical-section = ["dep:portable-atomic", "portable-atomic?/critical-section"]
portable-atomic-critical-section = ["dep:portable-atomic", "portable-atomic", "portable-atomic?/critical-section"]

# Enable polyfilling of atomics via portable-atomic, using disabling interrupts for locking.
# WARNING: this is only sound for single-core bare-metal privileged-mode targets!
portable-atomic-unsafe-assume-single-core = ["dep:portable-atomic", "portable-atomic?/unsafe-assume-single-core"]
portable-atomic-unsafe-assume-single-core = ["dep:portable-atomic", "portable-atomic", "portable-atomic?/unsafe-assume-single-core"]

# implement serde traits.
serde = ["dep:serde"]
Expand Down

0 comments on commit 9feb664

Please sign in to comment.