- Bump the minimum required version to 1.28.
- Fix breakage with nightly feature due to rust-lang/rust#65214.
- Make
Atomic::null()
const function at 1.31+. - Bump
crossbeam-utils
to0.7
.
- Add
Atomic::into_owned()
. - Update
memoffset
dependency.
- Add
Shared::deref_mut()
. - Add a Treiber stack to examples.
- Remove
Guard::clone()
. - Bump dependencies.
- Update
crossbeam-utils
to0.6
.
defer
now requiresF: Send + 'static
.- Bump the minimum Rust version to 1.26.
- Pinning while TLS is tearing down does not fail anymore.
- Rename
Handle
toLocalHandle
. - Add
defer_unchecked
anddefer_destroy
. - Remove
Clone
impl forLocalHandle
.
- Update
crossbeam-utils
to0.5
.
- Fix compatibility with the latest Rust nightly.
- Update
crossbeam-utils
to0.4
. - Specify the minimum Rust version to
1.25.0
.
- Downgrade
crossbeam-utils
to0.3
because it was a breaking change.
- Expose the
Pointer
trait. - Warn missing docs and missing debug impls.
- Update
crossbeam-utils
to0.4
.
- Add
Debug
impls forCollector
,Handle
, andGuard
. - Add
load_consume
toAtomic
. - Rename
Collector::handle
toCollector::register
. - Remove the
Send
implementation forHandle
(this was a bug). OnlyCollector
s can be shared among multiple threads, whileHandle
s andGuard
s must stay within the thread in which they were created.
- Update dependencies.
- Remove support for Rust 1.13.
- Add support for Rust 1.13.
- Improve documentation for CAS.
- Add method
Owned::into_box
. - Fix a use-after-free bug in
Local::finalize
. - Fix an ordering bug in
Global::push_bag
. - Fix a bug in calculating distance between epochs.
- Remove
impl<T> Into<Box<T>> for Owned<T>
.
- First version of the new epoch-based GC.