Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.32 KB

CHANGELOG.md

File metadata and controls

38 lines (26 loc) · 1.32 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.2.0 - 2024-02-22

Added

  • feature alloc that contains the old implementation that relies on allocation.
  • module static_mem that implements the channel without allocation, but known compile time size.
  • Sender::new to create sender, and Sender::new_receiver to a receiver from the sender that will start receiving from the next message of the sender/s.

Changed

  • The alloc (previous) implementation doesn't need to specify size at compile time.
  • Needed to bump MSRV to 1.61.0 to support some const fn features.

0.1.1 - 2024-02-22

Fixed

  • Race conditions on send (write) and receive (read) operations.

0.1.0 - 2024-02-21

Added

  • Initial implementation of the library.
  • Tests and benches.
  • Documentation.