diff --git a/ChangeLog.rst b/ChangeLog.rst index 1128baebc5f31..cf3d9dfcd3354 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,9 +1,9 @@ -10.1.0 - TBD ------------- +10.1.0 - 2023-08-12 +------------------- * Optimized format string compilation resulting in up to 40% speed up in - ``format_to`` and ~4x speed up in ``format_to_n`` on a concatenation - benchmarks (`#3133 `_, + compiled ``format_to`` and ~4x speed up in compiled ``format_to_n`` on a + concatenation benchmark (`#3133 `_, `#3484 `_). {fmt} 10.0:: @@ -27,7 +27,7 @@ Thanks `@Minty-Meeo `_. * Added formatters for proxy references to elements of ``std::vector`` and - ``std::bitset``. (`#3567 `_, + ``std::bitset`` (`#3567 `_, `#3570 `_). For example (`godbolt `__): @@ -44,7 +44,7 @@ Thanks `@phprus (Vladislav Shchapov) `_ and `@felix642 (FĂ©lix-Antoine Constantin) `_. -* Fixed ambiguous formatter specialization for containers that look like +* Fixed an ambiguous formatter specialization for containers that look like container adaptors such as ``boost::flat_set`` (`#3556 `_, `#3561 `_). @@ -84,8 +84,8 @@ `#3434 `_). Thanks `@phprus (Vladislav Shchapov) `_. -* Removed remnants of the Grisu floating-point formatter that has been replaced - by Dragonbox in earlier versions. +* Removed the remnants of the Grisu floating-point formatter that has been + replaced by Dragonbox in earlier versions. * Added ``throw_format_error`` to the public API (`#3551 `_). diff --git a/doc/build.py b/doc/build.py index b1dde12e5289e..98716a6b58ab3 100755 --- a/doc/build.py +++ b/doc/build.py @@ -4,7 +4,7 @@ import errno, os, re, sys from subprocess import check_call, CalledProcessError, Popen, PIPE, STDOUT -versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0', '4.1.0', '5.0.0', '5.1.0', '5.2.0', '5.2.1', '5.3.0', '6.0.0', '6.1.0', '6.1.1', '6.1.2', '6.2.0', '6.2.1', '7.0.0', '7.0.1', '7.0.2', '7.0.3', '7.1.0', '7.1.1', '7.1.2', '7.1.3', '8.0.0', '8.0.1', '8.1.0', '8.1.1', '9.0.0', '9.1.0', '10.0.0'] +versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0', '4.1.0', '5.0.0', '5.1.0', '5.2.0', '5.2.1', '5.3.0', '6.0.0', '6.1.0', '6.1.1', '6.1.2', '6.2.0', '6.2.1', '7.0.0', '7.0.1', '7.0.2', '7.0.3', '7.1.0', '7.1.1', '7.1.2', '7.1.3', '8.0.0', '8.0.1', '8.1.0', '8.1.1', '9.0.0', '9.1.0', '10.0.0', '10.1.0'] class Pip: def __init__(self, venv_dir): diff --git a/include/fmt/core.h b/include/fmt/core.h index f4c5ca75f0b57..751b89dd90f8f 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -18,7 +18,7 @@ #include // The fmt library version in the form major * 10000 + minor * 100 + patch. -#define FMT_VERSION 100001 +#define FMT_VERSION 100100 #if defined(__clang__) && !defined(__ibmxl__) # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__) diff --git a/support/rst2md.py b/support/rst2md.py index 3f072007dae02..c6e59098ba310 100755 --- a/support/rst2md.py +++ b/support/rst2md.py @@ -138,6 +138,13 @@ def visit_table(self, node): def depart_table(self, node): pass + def visit_system_message(self, node): + pass + + def depart_system_message(self, node): + pass + + class MDWriter(writers.Writer): """GitHub-flavored markdown writer"""