Skip to content

Releases: orium/archery

archery 1.2.1

13 Aug 18:51
v1.2.1
Compare
Choose a tag to compare
  • No longer depend on static_assertions.

archery 1.2.0

20 Feb 21:56
v1.2.0
Compare
Choose a tag to compare
  • Added support for serde. This gated behind the serde feature.

archery 1.1.0

31 Oct 19:18
v1.1.0
Compare
Choose a tag to compare
  • Added support for triomphe::Arc as a pointer kind. This gated behind the triomphe feature.

archery 1.0.0

21 Jul 00:12
v1.0.0
Compare
Choose a tag to compare
  • No changes. It’s just time to commit to a stable release :).

archery 0.5.0

15 Mar 00:22
v0.5.0
Compare
Choose a tag to compare
  • Fix Send/Sync unsoundness in SharedPointer. See issue #18.
  • Added SharedPointer::pin().
  • Added SharedPointer::as_ptr().
  • Updated dependencies.
  • Updated to 2021 edition.

archery 0.4.0

25 Aug 23:43
v0.4.0
Compare
Choose a tag to compare
  • Added support for no_std.

archery 0.2.1

22 Jun 16:11
v0.2.1
Compare
Choose a tag to compare
  • Minor fix in README.

archery 0.2.0

22 Jun 16:10
v0.2.0
Compare
Choose a tag to compare
  • Added some functionality to SharedPointer that you would expect from Rc/Arc.
    • Functions:
      • SharedPointer::try_unwrap().
      • SharedPointer::get_mut().
      • SharedPointer::strong_count().
      • SharedPointer::ptr_eq().
    • Traits:
      • Default.
      • From<T>.
      • From<Box<T>>.
      • std::fmt::Pointer.

archery 0.1.0

25 Feb 02:52
v0.1.0
Compare
Choose a tag to compare
  • Initial release with SharedPointer, SharedPointerKind, SharedPointerKindRc, and SharedPointerKindArc.
    • Functionality exposed from the underlying pointers: deref(), make_mut(), clone().