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.
October 5th, 2024
- Reduce MSRV to Rust 1.60. Removes usage of
MaybeUninit::zeroed()
which lowers the MSRV to Rust 1.60.
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:You can just writeconcat_slices!([(0, 0, 0); (u8, u8, u8)]: /* ... */);
Contributed by airblast-devconcat_slices!([(u8, u8, u8)]: /* ... */);
January 24th, 2024
November 3rd, 2023
October 10th, 2023
January 4th, 2023
September 25th, 2022
March 30th, 2022
March 19th, 2022
First release.