From e5563d5713e0221091e7006bd30b3746c2e76026 Mon Sep 17 00:00:00 2001 From: Sean Middleditch Date: Mon, 15 Jan 2024 13:12:38 -0800 Subject: [PATCH] Update NEWS for 0.2 and 0.3-wip --- NEWs.md | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/NEWs.md b/NEWs.md index 3507000..b843390 100644 --- a/NEWs.md +++ b/NEWs.md @@ -1,7 +1,35 @@ nanofmt ======= -Release 0.1.0 -------------- +Release 0.3 (WIP) +----------------- -- Initial release +### Breaking Changes + +- Renamed `format_output` to `format_context`. +- Custom formatter parsing now uses `format_parse_context`. + +### Features + +### Bug Fixes + +### Infrastructure + +- Switch from Catch2 to doctest for testing framework. + +Release 0.2 +----------- + +### Features + +- Added `NANOFMT_FLOAT` option to disable float support. +- Support implicit conversion to `format_string`. + +### Bug Fixes + +- Correct `format_length` with integer format args (#54). + +Release 0.1 +----------- + +- Initial release.