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