Skip to content

0.2.19 release

Compare
Choose a tag to compare
@rodrimati1992 rodrimati1992 released this 23 Aug 19:52
· 62 commits to master since this release
0ad2578

Added char support, and deprecated strwriter_as_str macro in favor of new StrWriter::as_str_alt method.

Changelog

0.2.19

Added char support to all formatting macros.

Added char, &[char], and Option<char> impls of FormatMarker trait, with debug formatting methods.

Added Formatter::{write_char, write_char_debug} methods.

Added StrWriterMut::{as_str_alt, write_char, write_char_debug} methods.

Added StrWriter::{as_str_alt, unsize} methods.

Deprecated strwriter_as_str macro, superceded by StrWriter::as_str_alt.

Bumped the minimum required nightly version to 2021-07-05 due to use of const-stabilized core::str::from_utf8_unchecked.