# 0.1.8 - Added support for `concat!` directly in the format string. # 0.1.7 - Added `nonzero_impls` feature to `to_arraystring` as MSRV permits, allowing formatting of `NonZero` integers. # 0.1.6 - Fixed `non_snake_case` warning triggering when using generic consts in `aformat/aformat_into`. - Fixed error when using consts in `aformat`/`aformat_into`. # 0.1.5 - Removed unused `procout` dependency of `aformat_macros`. # 0.1.4 - The `std` feature of `arrayvec` is no longer enabled, fixing `no_std` compatiblity. - `aformat` and `aformat_into` now avoid formatting identical ident arguments multiple times. # 0.1.3 - `aformat` and `aformat_into` both now support expressions as arguments, allowing `aformat!("2 + 2 = {}", 2_u8 + 2)` to compile. - The macros now avoid generating empty `push_str` calls. # 0.1.2 - Swapped out internal implementation from `feature(generic_const_exprs)` to `typenum`-based, now supporting stable. # 0.1.1 - Added `aformat_into`, allowing formatting into an existing `ArrayString`.