File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.8.0] - 2023-11-07
11
+
10
12
### Added
11
13
12
14
- Add ` Clone ` and ` PartialEq ` implementations to ` HistoryBuffer ` .
@@ -561,7 +563,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
561
563
562
564
- Initial release
563
565
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
565
568
[ v0.7.16 ] : https://github.com/rust-embedded/heapless/compare/v0.7.15...v0.7.16
566
569
[ v0.7.15 ] : https://github.com/rust-embedded/heapless/compare/v0.7.14...v0.7.15
567
570
[ v0.7.14 ] : https://github.com/rust-embedded/heapless/compare/v0.7.13...v0.7.14
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ version = "0.8.0"
21
21
portable-atomic = [" dep:portable-atomic" ]
22
22
23
23
# 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" ]
25
25
26
26
# Enable polyfilling of atomics via portable-atomic, using disabling interrupts for locking.
27
27
# 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" ]
29
29
30
30
# implement serde traits.
31
31
serde = [" dep:serde" ]
You can’t perform that action at this time.
0 commit comments