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/).
7
7
8
8
## [ Unreleased]
9
9
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
+
10
31
## [ v0.5.1] - 2019-08-29
11
32
12
33
### Added
@@ -261,7 +282,8 @@ architecture.
261
282
262
283
- Initial release
263
284
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
265
287
[ v0.5.1 ] : https://github.com/japaric/heapless/compare/v0.5.0...v0.5.1
266
288
[ v0.5.0 ] : https://github.com/japaric/heapless/compare/v0.4.4...v0.5.0
267
289
[ 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 = [
17
17
license = " MIT OR Apache-2.0"
18
18
name = " heapless"
19
19
repository = " https://github.com/japaric/heapless"
20
- version = " 0.5.1 "
20
+ version = " 0.5.2 "
21
21
22
22
[features ]
23
23
default = [" cas" ]
You can’t perform that action at this time.
0 commit comments