Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
e31f2b3d
Commit
e31f2b3d
authored
Dec 01, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog
parent
62da1db6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
6 deletions
+48
-6
ChangeLog.rst
ChangeLog.rst
+48
-6
No files found.
ChangeLog.rst
View file @
e31f2b3d
...
@@ -15,8 +15,8 @@
...
@@ -15,8 +15,8 @@
prints ``3.141592653589793``.
prints ``3.141592653589793``.
* Made the fast binary to decimal floating-point formatter the default
and
* Made the fast binary to decimal floating-point formatter the default
,
s
ligthly improved its
performance. {fmt} is now 15x faster than libc++'s
s
implified it and improved
performance. {fmt} is now 15x faster than libc++'s
``std::ostringstream``, 11x faster than ``printf`` and 10% faster than
``std::ostringstream``, 11x faster than ``printf`` and 10% faster than
double-conversion on dtoa-benchmark:
double-conversion on dtoa-benchmark:
...
@@ -48,6 +48,10 @@
...
@@ -48,6 +48,10 @@
Thanks `@orivej (Orivej Desh) <https://github.com/orivej>`_.
Thanks `@orivej (Orivej Desh) <https://github.com/orivej>`_.
* Made floating-point formatting output consistent with ``printf``/iostreams
(`#1336 <https://github.com/fmtlib/fmt/issues/1376>`_,
`#1417 <https://github.com/fmtlib/fmt/issues/1417>`_).
* Added support for 128-bit integers
* Added support for 128-bit integers
(`#1287 <https://github.com/fmtlib/fmt/pull/1287>`_):
(`#1287 <https://github.com/fmtlib/fmt/pull/1287>`_):
...
@@ -64,6 +68,9 @@
...
@@ -64,6 +68,9 @@
(`#1351 <https://github.com/fmtlib/fmt/pull/1351>`_).
(`#1351 <https://github.com/fmtlib/fmt/pull/1351>`_).
Thanks `@tankiJong (Tanki Zhang) <https://github.com/tankiJong>`_.
Thanks `@tankiJong (Tanki Zhang) <https://github.com/tankiJong>`_.
* Made compile time in the header-only mode ~20% faster by reducing the number
of template instantiations.
* Added an overload of ``fmt::join`` that works with tuples
* Added an overload of ``fmt::join`` that works with tuples
(`#1322 <https://github.com/fmtlib/fmt/issues/1322>`_,
(`#1322 <https://github.com/fmtlib/fmt/issues/1322>`_,
`#1330 <https://github.com/fmtlib/fmt/pull/1330>`_):
`#1330 <https://github.com/fmtlib/fmt/pull/1330>`_):
...
@@ -113,10 +120,35 @@
...
@@ -113,10 +120,35 @@
Thanks `@dlaugt (Daniel Laügt) <https://github.com/dlaugt>`_.
Thanks `@dlaugt (Daniel Laügt) <https://github.com/dlaugt>`_.
* Fixed handling of types with deleted implicit rvalue conversion to
``const char**`` (`#1421 <https://github.com/fmtlib/fmt/issues/1421>`_):
.. code:: c++
struct mystring {
operator const char*() const&;
operator const char*() &;
operator const char*() const&& = delete;
operator const char*() && = delete;
};
mystring str;
fmt::print("{}", str); // now compiles
* Locale-specific number formatting now uses grouping
(`#1394 <https://github.com/fmtlib/fmt/pull/1394>`_).
Thanks `@skrdaniel <https://github.com/skrdaniel>`_.
* Enums are now mapped to correct underlying types instead of ``int``
* Enums are now mapped to correct underlying types instead of ``int``
(`#1286 <https://github.com/fmtlib/fmt/pull/1286>`_).
(`#1286 <https://github.com/fmtlib/fmt/pull/1286>`_).
Thanks `@agmt (Egor Seredin) <https://github.com/agmt>`_.
Thanks `@agmt (Egor Seredin) <https://github.com/agmt>`_.
* Added ``basic_format_parse_context`` for consistency with C++20
``std::format`` and deprecated ``basic_parse_context``.
* Fixed handling of UTF-8 in precision
(`#1390 <https://github.com/fmtlib/fmt/pull/1390>`_).
Thanks `@tajtiattila (Attila Tajti) <https://github.com/tajtiattila>`_.
* {fmt} can now be installed on Linux, macOS and Windows with
* {fmt} can now be installed on Linux, macOS and Windows with
`Conda <https://docs.conda.io/en/latest/>`__ using its
`Conda <https://docs.conda.io/en/latest/>`__ using its
`conda-forge <https://conda-forge.org>`__
`conda-forge <https://conda-forge.org>`__
...
@@ -136,14 +168,18 @@
...
@@ -136,14 +168,18 @@
`#1291 <https://github.com/fmtlib/fmt/issues/1291>`_,
`#1291 <https://github.com/fmtlib/fmt/issues/1291>`_,
`#1296 <https://github.com/fmtlib/fmt/issues/1296>`_,
`#1296 <https://github.com/fmtlib/fmt/issues/1296>`_,
`#1332 <https://github.com/fmtlib/fmt/pull/1332>`_,
`#1332 <https://github.com/fmtlib/fmt/pull/1332>`_,
`#1337 <https://github.com/fmtlib/fmt/pull/1337>`_).
`#1337 <https://github.com/fmtlib/fmt/pull/1337>`_,
`#1418 <https://github.com/fmtlib/fmt/pull/1418>`_).
Thanks
Thanks
`@waywardmonkeys (Bruce Mitchener) <https://github.com/waywardmonkeys>`_,
`@waywardmonkeys (Bruce Mitchener) <https://github.com/waywardmonkeys>`_,
`@pauldreik (Paul Dreik) <https://github.com/pauldreik>`_,
`@pauldreik (Paul Dreik) <https://github.com/pauldreik>`_,
`@jackoalan (Jack Andersen) <https://github.com/jackoalan>`_.
`@jackoalan (Jack Andersen) <https://github.com/jackoalan>`_.
* Fixed compile-time format string checks for user-defined types
* Fixed compile-time format string checks for user-defined types
(`#1292 <https://github.com/fmtlib/fmt/issues/1292>`_).
(`#1292 <https://github.com/fmtlib/fmt/issues/1292>`_).
* Worked around a false positive in ``unsigned-integer-overflow`` sanitizer
(`#1377 <https://github.com/fmtlib/fmt/issues/1377>`_).
* Fixed various warnings and compilation issues
* Fixed various warnings and compilation issues
(`#1273 <https://github.com/fmtlib/fmt/issues/1273>`_,
(`#1273 <https://github.com/fmtlib/fmt/issues/1273>`_,
...
@@ -170,9 +206,13 @@
...
@@ -170,9 +206,13 @@
`#1362 <https://github.com/fmtlib/fmt/issues/1362>`_,
`#1362 <https://github.com/fmtlib/fmt/issues/1362>`_,
`#1364 <https://github.com/fmtlib/fmt/pull/1364>`_,
`#1364 <https://github.com/fmtlib/fmt/pull/1364>`_,
`#1370 <https://github.com/fmtlib/fmt/pull/1370>`_,
`#1370 <https://github.com/fmtlib/fmt/pull/1370>`_,
`#1371 <https://github.com/fmtlib/fmt/pull/1371>`_,
`#1388 <https://github.com/fmtlib/fmt/issues/1388>`_,
`#1397 <https://github.com/fmtlib/fmt/pull/1397>`_,
`#1397 <https://github.com/fmtlib/fmt/pull/1397>`_,
`#1414 <https://github.com/fmtlib/fmt/pull/1414>`_,
`#1414 <https://github.com/fmtlib/fmt/pull/1414>`_,
`#1416 <https://github.com/fmtlib/fmt/pull/1416>`_).
`#1416 <https://github.com/fmtlib/fmt/pull/1416>`_,
`#1427 <https://github.com/fmtlib/fmt/pull/1427>`_,
`#1433 <https://github.com/fmtlib/fmt/pull/1433>`_).
Thanks `@hhb <https://github.com/hhb>`_,
Thanks `@hhb <https://github.com/hhb>`_,
`@gsjaardema (Greg Sjaardema) <https://github.com/gsjaardema>`_,
`@gsjaardema (Greg Sjaardema) <https://github.com/gsjaardema>`_,
`@gabime (Gabi Melman) <https://github.com/gabime>`_,
`@gabime (Gabi Melman) <https://github.com/gabime>`_,
...
@@ -184,7 +224,9 @@
...
@@ -184,7 +224,9 @@
`@denizevrenci (Deniz Evrenci) <https://github.com/denizevrenci>`_
`@denizevrenci (Deniz Evrenci) <https://github.com/denizevrenci>`_
`@leonklingele <https://github.com/leonklingele>`_,
`@leonklingele <https://github.com/leonklingele>`_,
`@chronoxor (Ivan Shynkarenka) <https://github.com/chronoxor>`_,
`@chronoxor (Ivan Shynkarenka) <https://github.com/chronoxor>`_,
`@kent-tri <https://github.com/kent-tri>`_.
`@kent-tri <https://github.com/kent-tri>`_,
`@0x8000-0000 (Florin Iucha) <https://github.com/0x8000-0000>`_,
`@marti4d (Chris Martin) <https://github.com/marti4d>`_.
6.0.0 - 2019-08-26
6.0.0 - 2019-08-26
------------------
------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment