1# Version 0.3.12 2 3- Fix stack overflow when pushing large value to `SegQueue`. (#1146, #1147, #1159) 4 5# Version 0.3.11 6 7- Remove dependency on `cfg-if`. (#1072) 8 9# Version 0.3.10 10 11- Relax the minimum supported Rust version to 1.60. (#1056) 12- Implement `UnwindSafe` and `RefUnwindSafe` for `ArrayQueue` and `SegQueue`. (#1053) 13- Optimize `Drop` implementation of `ArrayQueue`. (#1057) 14 15# Version 0.3.9 16 17- Bump the minimum supported Rust version to 1.61. (#1037) 18- Improve support for targets without atomic CAS. (#1037) 19- Remove build script. (#1037) 20 21# Version 0.3.8 22 23- Fix build script bug introduced in 0.3.7. (#932) 24 25# Version 0.3.7 26 27**Note:** This release has been yanked due to regression fixed in 0.3.8. 28 29- Improve support for custom targets. (#922) 30 31# Version 0.3.6 32 33- Bump the minimum supported Rust version to 1.38. (#877) 34 35# Version 0.3.5 36 37- Add `ArrayQueue::force_push`. (#789) 38 39# Version 0.3.4 40 41- Implement `IntoIterator` for `ArrayQueue` and `SegQueue`. (#772) 42 43# Version 0.3.3 44 45- Fix stacked borrows violation in `ArrayQueue` when `-Zmiri-tag-raw-pointers` is enabled. (#763) 46 47# Version 0.3.2 48 49- Support targets that do not have atomic CAS on stable Rust. (#698) 50 51# Version 0.3.1 52 53- Make `SegQueue::new` const fn. (#584) 54- Change license to "MIT OR Apache-2.0". 55 56# Version 0.3.0 57 58- Bump the minimum supported Rust version to 1.36. 59- Remove `PushError` and `PopError`. 60 61# Version 0.2.3 62 63- Fix bug in release (yanking 0.2.2) 64 65# Version 0.2.2 66 67- Fix unsoundness issues by adopting `MaybeUninit`. (#458) 68 69# Version 0.2.1 70 71- Add `no_std` support. 72 73# Version 0.2.0 74 75- Bump the minimum required version to 1.28. 76- Bump `crossbeam-utils` to `0.7`. 77 78# Version 0.1.2 79 80- Update `crossbeam-utils` to `0.6.5`. 81 82# Version 0.1.1 83 84- Update `crossbeam-utils` to `0.6.4`. 85 86# Version 0.1.0 87 88- Initial version with `ArrayQueue` and `SegQueue`. 89