- Increased minimum Dart SDK to 2.15.0 for
unawaitedfunction. - Added development dependencies lints ^2.1.1 and pana: ^0.21.37.
- Fixed code to remove lint warnings.
- Fixed bug with new read mutexes preventing a write mutex from being acquired.
- BREAKING CHANGE: critical section functions must return a Future.
- This is unlikely to affect real-world code, since only functions containing asynchronous code would be critical.
- Protect method returns Future to the value from the critical section.
- Null safety release.
- Pre-release version: updated library to null safety (Non-nullable by default).
- Removed support for Dart 1.x.
- Added protect, protectRead and protectWrite convenience methods.
- Improved tests to not depend on timing.
- Added an example.
- Code clean up to satisfy pana 0.13.2 health checks.
- Fixed dartanalyzer warnings.
- Updated the upper bound of the SDK constraint to <3.0.0.
- Initial version