1# Version 0.3.4 2 3- Implement `IntoIterator` for `ArrayQueue` and `SegQueue`. (#772) 4 5# Version 0.3.3 6 7- Fix stacked borrows violation in `ArrayQueue` when `-Zmiri-tag-raw-pointers` is enabled. (#763) 8 9# Version 0.3.2 10 11- Support targets that do not have atomic CAS on stable Rust. (#698) 12 13# Version 0.3.1 14 15- Make `SegQueue::new` const fn. (#584) 16- Change license to "MIT OR Apache-2.0". 17 18# Version 0.3.0 19 20- Bump the minimum supported Rust version to 1.36. 21- Remove `PushError` and `PopError`. 22 23# Version 0.2.3 24 25- Fix bug in release (yanking 0.2.2) 26 27# Version 0.2.2 28 29- Fix unsoundness issues by adopting `MaybeUninit`. (#458) 30 31# Version 0.2.1 32 33- Add `no_std` support. 34 35# Version 0.2.0 36 37- Bump the minimum required version to 1.28. 38- Bump `crossbeam-utils` to `0.7`. 39 40# Version 0.1.2 41 42- Update `crossbeam-utils` to `0.6.5`. 43 44# Version 0.1.1 45 46- Update `crossbeam-utils` to `0.6.4`. 47 48# Version 0.1.0 49 50- Initial version with `ArrayQueue` and `SegQueue`. 51