Skip to content

Latest commit

 

History

History
102 lines (62 loc) · 2.98 KB

RELEASES.md

File metadata and controls

102 lines (62 loc) · 2.98 KB

📝 Release notes

0.6.0

January 28th, 2025

  • Improve macro performance. Improves performance of the macro particularly when concatenating a large number of strs/slices. This change requires the MSRV to be increased to Rust 1.66.

0.5.1

October 5th, 2024

0.5.0

February 29th, 2024

  • Allow slice concatenation without initial value. This change removes the need to add the initializer for non-number types when calling concat_slices!. Instead of having to write something like this:
    concat_slices!([(0, 0, 0); (u8, u8, u8)]: /* ... */);
    You can just write
    concat_slices!([(u8, u8, u8)]: /* ... */);
    Contributed by airblast-dev

0.4.1

January 24th, 2024

0.4.0

November 3rd, 2023

0.3.1

October 10th, 2023

0.3.0

January 4th, 2023

0.2.0

September 25th, 2022

0.1.1

March 30th, 2022

0.1.0

March 19th, 2022

First release.