Skip to content

Latest commit

 

History

History
57 lines (33 loc) · 1.77 KB

CHANGELOG.md

File metadata and controls

57 lines (33 loc) · 1.77 KB

Changelog

v0.3.1 (2024-07-14)

v0.3.0 (2024-05-31)

  • More standard string and character types (PR #7, thanks to Flávio J. Saraiva (flaviojs))
    • Support CString and &CStr for %s, assuming the're UTF-8 encoded
    • Support u8 and i8 (ASCII), u16 (UCS-2) and u32 (UCS-4) for %c

v0.2.1 (2024-02-12)

  • Fix accidental backwards-incompatible API change in v0.2.0

v0.2.0 (2024-02-12)

  • Expose the some of the sprintf::parser module in the API to allow other to use the parse_format_string function (PR #5, thanks to David Alexander Bjerremose (DaBs))
  • PrintfError now implements std::error::Error

v0.1.4 (2023-09-10)

v0.1.3 (2022-09-23)

  • Fix float rounding: 9.99 should round to 10.0, not 9.0. (Issue #2, thanks to Nicholas Ritchie)

v0.1.2 (2021-11-06)

v0.1.1 (2021-08-30)

  • Fix bug in padding of fixed-width fields

v0.1.0 (2021-08-24)

  • Initial release