Update ChangeLog.rst

This commit is contained in:
Victor Zverovich 2018-05-12 09:42:59 -07:00 committed by GitHub
parent fc9087114f
commit b64b24ebc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@
* Renamed symbols to follow standard C++ naming conventions and cleaned the argument handling API: ``ArgList`` -> ``format_args``, ``ArgArray`` -> ``format_arg_store``, etc.
* Added the ``make_format_args`` function for capturing formatting arguments:
* Added the `make_format_args <http://fmtlib.net/dev/api.html#_CPPv2N3fmt16make_format_argsEDpRK4Args>`_ function for capturing formatting arguments:
.. code:: c++
@ -26,7 +26,23 @@
std::string vformat(string_view format_str, format_args args);
template <typename... Args>
inline std::string format(string_view format_str, const Args & ... args);
std::string format(string_view format_str, const Args & ... args);
* Added a section on `formatting user-defined <http://fmtlib.net/dev/api.html#formatting-user-defined-types>`_ types to the docs (`#393 <https://github.com/fmtlib/fmt/pull/393>`_). Thanks `@pwm1234 (Phil) <https://github.com/pwm1234>`_.
* Fixed compilation on Android (`#381 <https://github.com/fmtlib/fmt/pull/381>`_).
Thanks `@hghwng (Hugh Wang) <https://github.com/hghwng>`_.
* Fixed Linux compilation with ``-fno-exceptions`` (`#402 <https://github.com/fmtlib/fmt/pull/402>`_).
Thanks `@JanHellwig (Jan Hellwig) <https://github.com/JanHellwig>`_.
* Implemented thread-safe time formatting (`#395 <https://github.com/fmtlib/fmt/issues/395>`_, `#396 <https://github.com/fmtlib/fmt/pull/396>`_).
Thanks `@codicodi <https://github.com/codicodi>`_.
* Removed unnecessary ``fmt/`` prefix in includes (`#397 <https://github.com/fmtlib/fmt/pull/397>`_).
Thanks `@chronoxor (Ivan Shynkarenka) <https://github.com/chronoxor>`_.
* Renamed ``CHAR_WIDTH`` to ``CHAR_SIZE`` to avoid collision with ISO/IEC TS 18661-1:2014 macro.
4.1.0 - 2017-12-20
------------------