Skip to content

Commit f32038d

Browse files
committed
v0.5.2
1 parent b6bd3af commit f32038d

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = [
1717
license = "MIT OR Apache-2.0"
1818
name = "heapless"
1919
repository = "https://github.com/japaric/heapless"
20-
version = "0.5.1"
20+
version = "0.5.2"
2121

2222
[features]
2323
default = ["cas"]

0 commit comments

Comments
 (0)