File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99
10+ ## [ v0.5.2] - 2020-01-15
11+
12+ ### Fixed
13+
14+ - Fixed incorrect overflow behavior in computation of capacities
15+ - Fixed edge case in ` mpmc::Queue::dqueue ` that led to an infinite loop
16+ - IndexMap and LinerMap are now deserialized as maps, rather than as sequences
17+ - Fixed compilation of this crates on built-in targets that don't have CAS instructions
18+
19+ ### Changed
20+
21+ - ` spsc::Queue ` iterators now implement the double ended iterator trait
22+
23+ ### Added
24+
25+ - opt-out ` cas ` feature to disable parts of the API that use CAS instructions.
26+ Useful if using a custom (i.e. not built-in) rustc target that does not have CAS
27+ instructions.
28+
29+ - singleton ` Pool ` support on ARMv7-A devices
30+
1031## [ v0.5.1] - 2019-08-29
1132
1233### Added
@@ -261,7 +282,8 @@ architecture.
261282
262283- Initial release
263284
264- [ Unreleased ] : https://github.com/japaric/heapless/compare/v0.5.1...HEAD
285+ [ Unreleased ] : https://github.com/japaric/heapless/compare/v0.5.2...HEAD
286+ [ v0.5.2 ] : https://github.com/japaric/heapless/compare/v0.5.1...v0.5.2
265287[ v0.5.1 ] : https://github.com/japaric/heapless/compare/v0.5.0...v0.5.1
266288[ v0.5.0 ] : https://github.com/japaric/heapless/compare/v0.4.4...v0.5.0
267289[ v0.4.4 ] : https://github.com/japaric/heapless/compare/v0.4.3...v0.4.4
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ keywords = [
1717license = " MIT OR Apache-2.0"
1818name = " heapless"
1919repository = " https://github.com/japaric/heapless"
20- version = " 0.5.1 "
20+ version = " 0.5.2 "
2121
2222[features ]
2323default = [" cas" ]
You can’t perform that action at this time.
0 commit comments