Skip to content

Commit 9feb664

Browse files
authored
Merge pull request #408 from rust-embedded/fix-pa-feature
Release v0.8.0
2 parents ac26e82 + f089e9c commit 9feb664

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.8.0] - 2023-11-07
11+
1012
### Added
1113

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

562564
- Initial release
563565

564-
[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.7.16...HEAD
566+
[Unreleased]: https://github.com/rust-embedded/heapless/compare/v0.8.0...HEAD
567+
[v0.8.0]: https://github.com/rust-embedded/heapless/compare/v0.7.16...v0.8.0
565568
[v0.7.16]: https://github.com/rust-embedded/heapless/compare/v0.7.15...v0.7.16
566569
[v0.7.15]: https://github.com/rust-embedded/heapless/compare/v0.7.14...v0.7.15
567570
[v0.7.14]: https://github.com/rust-embedded/heapless/compare/v0.7.13...v0.7.14

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ version = "0.8.0"
2121
portable-atomic = ["dep:portable-atomic"]
2222

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

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

3030
# implement serde traits.
3131
serde = ["dep:serde"]

0 commit comments

Comments
 (0)