Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 817 Bytes

CHANGELOG.md

File metadata and controls

28 lines (15 loc) · 817 Bytes

0.1.4

Maintenance

  • Resolve clippy errors. #11

Bug fixes

  • Resolve potential unsoundness issues with atomics and provide and additional check for counter overflow. #12

0.1.3

Maintenance

  • Remove unused dependency from Cargo.toml. (#9)

0.1.2

Improvements

  • Only wake waiters on the mutex if the mutex is unlocked instead of each time a guard is dropped. This should be an optimization and improve performance. (#6)

0.1.1

Improvements

  • Use compare_exchange_weak for mutex acquisition because the acquisition is wrapped in a loop. (#4)