diff --git a/ChangeLog.rst b/ChangeLog.rst index f2c28956..3db28ca8 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -28,16 +28,9 @@ template std::string format(string_view format_str, const Args & ... args); -* Added a section on `formatting user-defined `_ types to the docs (`#393 `_). Thanks `@pwm1234 (Phil) `_. +* Added a section on `formatting user-defined types `_ to the docs (`#393 `_). Thanks `@pwm1234 (Phil) `_. -* Added an experimental ``join`` function that allows formating a range of values (`godbolt `_, `#466 `_): - - .. code:: c++ - - std::vector v = {1, 2, 3}; - print("{}", fmt::join(v.begin(), v.end(), ", ")); // prints "1, 2, 3" - - Thanks `@olivier80 `_. +* Added a section describing `the use of header-only target with CMake `_ to the docs (`#515 `_). Thanks `@ibell (Ian Bell) `_. * Removed the Write API in favor of the `Format API `_ with compile-time handling of format strings. @@ -67,6 +60,9 @@ fmt::printf("%s", 42); +* Placed CMake imported targets in the `fmt` namespace (`#511 `_, `#513 `_). + Thanks `@bjoernthiel (Bjoern Thiel) `_, `@niosHD (Mario Werner) `_. + * Fixed minimal supported library subset (`#418 `_, `#419 `_, `#420 `_). Thanks `@alabuzhev (Alex Alabuzhev) `_.