Skip to content

Latest commit

 

History

History
25 lines (25 loc) · 1.56 KB

CHANGELOG.md

File metadata and controls

25 lines (25 loc) · 1.56 KB

Version 0.6.2 - 06-09-2024

  • Minor: Fixed flag cases being incorrect, leading to unexpected behaviour.

Version 0.6.1 - 21-08-2024

  • Minor: Added default feature log to enable logging.
  • Minor: Reduced unnecessary info logs.

Version 0.6.0 - 16-08-2024

  • Major: Added a read Buffer. Default buffer size is 256, which should be enough for most cases.
  • Major: Added new_with_buffers to FdCanUsb to allow for custom buffers.
  • Major: Changed read_ok and read_response to use the buffer and fix an issue of missing bytes.
  • Major: Made read_ok, read_response, and write private.
  • Minor: Changed packet logs to Debug level.

Version 0.5.0 - 09-08-2024

  • Major: Fixed error types not being public.

Version 0.4.0 - 09-08-2024

  • Major: Added error.rs and error types to reduce usage of std::io::Error.
  • Major: Fixed an incorrect / 2 when calculating the padding_len for frames.

Version 0.3.0 - 17-06-2024

  • Major: Changed CanFdFrame::new and CanFdFrame::new_with_data to return Err if more than 64 bytes are provided.
  • Minor: Moved the flush method to the serial2 feature to use the discard_buffers method in addition to flush.
  • Minor: Increased the read_ok buffer to 100 bytes to read the error message if one occurs. Ideally this would read all bytes not just 100.

Version 0.2.0 - 25-03-2024

  • Major: Changed License to apache-2.0
  • Minor: Added default feature serial2, and moved serial2 specific code to serial2 feature flag.

Version 0.1.0 - 19-03-2024

  • Initial release