Files
bpfire/config/rootfiles/packages
Adolf Belka 90d43e54c2 fmt: Update to version 9.1.0
- Update from version 9.0.0 to 9.1.0
- Update of rootfile
- Changelog
    9.1.0 - 2022-08-27
	* ``fmt::formatted_size`` now works at compile time
		  `#3026 <https://github.com/fmtlib/fmt/pull/3026>`_
			  For example (`godbolt <https://godbolt.org/z/1MW5rMdf8>`__):
			   .. code:: c++
			     #include <fmt/compile.h>
			     int main() {
			       using namespace fmt::literals;
			       constexpr size_t n = fmt::formatted_size("{}"_cf, 42);
			       fmt::print("{}\n", n); // prints 2
			     }
	* Fixed handling of invalid UTF-8
		  `#3038 <https://github.com/fmtlib/fmt/pull/3038>`_,
		  `#3044 <https://github.com/fmtlib/fmt/pull/3044>`_,
		  `#3056 <https://github.com/fmtlib/fmt/pull/3056>`_
	* Improved Unicode support in ``ostream`` overloads of ``print``
		  `#2994 <https://github.com/fmtlib/fmt/pull/2994>`_,
		  `#3001 <https://github.com/fmtlib/fmt/pull/3001>`_,
		  `#3025 <https://github.com/fmtlib/fmt/pull/3025>`_
	* Fixed handling of the sign specifier in localized formatting on systems with
	   32-bit ``wchar_t``
		  `#3041 <https://github.com/fmtlib/fmt/issues/3041>`_).
	* Added support for wide streams to ``fmt::streamed``
		  `#2994 <https://github.com/fmtlib/fmt/pull/2994>`_
	* Added the ``n`` specifier that disables the output of delimiters when
	   formatting ranges
		  `#2981 <https://github.com/fmtlib/fmt/pull/2981>`_,
		  `#2983 <https://github.com/fmtlib/fmt/pull/2983>`_
			  For example (`godbolt <https://godbolt.org/z/roKqGdj8c>`__):
			   .. code:: c++
			     #include <fmt/ranges.h>
			     #include <vector>
			     int main() {
			       auto v = std::vector{1, 2, 3};
			       fmt::print("{:n}\n", v); // prints 1, 2, 3
			     }
	* Worked around problematic ``std::string_view`` constructors introduced in C++23
		  `#3030 <https://github.com/fmtlib/fmt/issues/3030>`_,
		  `#3050 <https://github.com/fmtlib/fmt/issues/3050>`_
	* Improve handling (exclusion) of recursive ranges
		  `#2968 <https://github.com/fmtlib/fmt/issues/2968>`_,
		  `#2974 <https://github.com/fmtlib/fmt/pull/2974>`_
	* Improved error reporting in format string compilation
		  `#3055 <https://github.com/fmtlib/fmt/issues/3055>`_
	* Improved the implementation of
		  `Dragonbox <https://github.com/jk-jeon/dragonbox>`_, the algorithm used for
		   the default floating-point formatting
		  `#2984 <https://github.com/fmtlib/fmt/pull/2984>`_
	* Fixed issues with floating-point formatting on exotic platforms.
	* Improved the implementation of chrono formatting
		  `#3010 <https://github.com/fmtlib/fmt/pull/3010>`_
	* Improved documentation
		  `#2966 <https://github.com/fmtlib/fmt/pull/2966>`_,
		  `#3009 <https://github.com/fmtlib/fmt/pull/3009>`_,
		  `#3020 <https://github.com/fmtlib/fmt/issues/3020>`_,
		  `#3037 <https://github.com/fmtlib/fmt/pull/3037>`_
	* Improved build configuration
		  `#2991 <https://github.com/fmtlib/fmt/pull/2991>`_,
		  `#2995 <https://github.com/fmtlib/fmt/pull/2995>`_,
		  `#3004 <https://github.com/fmtlib/fmt/issues/3004>`_,
		  `#3007 <https://github.com/fmtlib/fmt/pull/3007>`_,
		  `#3040 <https://github.com/fmtlib/fmt/pull/3040>`_
	* Fixed various warnings and compilation issues
		  `#2969 <https://github.com/fmtlib/fmt/issues/2969>`_,
		  `#2971 <https://github.com/fmtlib/fmt/pull/2971>`_,
		  `#2975 <https://github.com/fmtlib/fmt/issues/2975>`_,
		  `#2982 <https://github.com/fmtlib/fmt/pull/2982>`_,
		  `#2985 <https://github.com/fmtlib/fmt/pull/2985>`_,
		  `#2988 <https://github.com/fmtlib/fmt/issues/2988>`_,
		  `#3000 <https://github.com/fmtlib/fmt/issues/3000>`_,
		  `#3006 <https://github.com/fmtlib/fmt/issues/3006>`_,
		  `#3014 <https://github.com/fmtlib/fmt/issues/3014>`_,
		  `#3015 <https://github.com/fmtlib/fmt/issues/3015>`_,
		  `#3021 <https://github.com/fmtlib/fmt/pull/3021>`_,
		  `#3023 <https://github.com/fmtlib/fmt/issues/3023>`_,
		  `#3024 <https://github.com/fmtlib/fmt/pull/3024>`_,
		  `#3029 <https://github.com/fmtlib/fmt/pull/3029>`_,
		  `#3043 <https://github.com/fmtlib/fmt/pull/3043>`_,
		  `#3052 <https://github.com/fmtlib/fmt/issues/3052>`_,
		  `#3053 <https://github.com/fmtlib/fmt/pull/3053>`_,
		  `#3054 <https://github.com/fmtlib/fmt/pull/3054>`_

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
2022-11-28 13:07:44 +01:00
..
2022-10-29 08:55:58 +00:00
2022-02-11 09:18:42 +00:00
2022-10-24 09:08:01 +00:00
2021-10-22 10:18:09 +00:00
2018-11-13 14:28:00 +00:00
2022-05-30 19:21:59 +00:00
2020-12-28 13:15:29 +00:00
2018-12-01 16:13:25 +00:00
2021-02-01 10:45:54 +00:00
2022-07-27 07:11:47 +00:00
2022-07-27 07:09:30 +00:00
2022-04-10 10:56:35 +00:00
2021-02-05 11:24:25 +00:00
2018-11-09 14:29:04 +00:00
2019-03-18 02:54:30 +00:00
2022-09-12 09:41:11 +00:00
2021-09-05 17:46:41 +00:00
2022-02-11 09:17:43 +00:00
2022-11-28 13:07:17 +01:00
2019-04-03 00:33:44 +01:00
2021-05-20 09:46:08 +00:00
2019-04-03 00:26:13 +01:00
2022-11-28 13:07:44 +01:00
2022-09-01 21:16:50 +00:00
2012-08-24 15:44:11 +02:00
2021-09-17 09:01:12 +00:00
2022-04-24 14:20:10 +00:00
2022-01-15 11:28:04 +00:00
2022-09-01 21:16:50 +00:00
2022-02-16 17:11:25 +00:00
2022-09-01 21:16:50 +00:00
2022-07-09 09:08:22 +00:00
2022-09-01 21:15:18 +00:00
2020-12-21 16:35:10 +00:00
2016-04-05 23:47:36 +01:00
2020-09-30 09:58:51 +00:00
2013-06-19 11:49:34 +02:00
2020-06-19 17:14:59 +00:00
2022-04-24 19:02:37 +00:00
2020-04-26 07:31:17 +00:00
2022-11-21 11:01:16 +00:00
2021-04-26 17:10:50 +00:00
2021-04-07 13:16:10 +00:00
2007-09-15 11:36:05 +00:00
2021-06-10 12:21:56 +00:00
2016-06-01 22:22:33 +01:00
2022-04-30 09:11:18 +00:00
2020-04-26 07:43:59 +00:00
2021-03-22 10:42:41 +00:00
2020-08-17 17:53:40 +00:00
2022-11-25 11:58:27 +00:00
2022-05-30 19:45:10 +00:00
2016-06-01 22:25:06 +01:00
2020-09-24 17:36:37 +00:00
2017-04-11 14:23:54 +01:00
2022-01-04 18:27:09 +01:00
2015-07-09 12:09:07 +02:00
2022-04-23 14:24:09 +00:00
2021-03-22 10:43:34 +00:00
2021-01-28 16:49:00 +00:00
2021-04-07 13:15:46 +00:00
2021-04-12 09:32:49 +00:00
2022-09-01 21:16:50 +00:00
2018-06-18 14:12:43 +01:00
2021-03-10 13:58:24 +00:00
2016-04-08 16:12:19 +01:00
2020-09-24 17:36:37 +00:00
2020-05-09 12:03:59 +00:00
2022-09-01 21:16:50 +00:00
2022-02-09 20:05:33 +00:00
2019-03-25 23:44:24 +00:00
2022-05-08 14:16:10 +00:00
2022-08-10 10:44:31 +00:00
2022-05-05 16:44:38 +00:00
2022-04-29 21:11:50 +00:00
2020-04-26 07:34:19 +00:00
2022-09-01 21:16:49 +00:00
2022-09-01 21:16:49 +00:00
2021-05-11 16:44:46 +00:00
2019-03-10 18:22:39 +00:00
2022-08-03 10:59:32 +00:00
2022-01-18 21:26:56 +00:00
2021-03-22 10:43:23 +00:00
2020-08-18 10:10:13 +00:00
2012-11-26 10:56:48 +01:00
2022-05-05 15:30:53 +00:00
2018-11-11 18:55:35 +00:00
2020-08-17 10:10:11 +00:00
2020-04-26 07:34:36 +00:00
2018-11-11 16:21:01 +00:00
2020-08-16 10:29:42 +00:00
2021-09-10 16:57:06 +00:00
2021-11-24 09:32:02 +00:00
2020-04-25 09:03:26 +00:00
2022-02-15 16:56:31 +00:00
2022-09-01 21:16:50 +00:00
2021-03-22 10:39:44 +00:00
2021-09-02 09:18:29 +00:00
2013-06-06 10:58:04 +02:00
2012-09-18 16:33:47 +02:00
2022-08-05 09:12:54 +00:00
2014-10-30 17:52:50 +01:00
2019-02-07 15:15:26 +00:00
2020-11-26 16:15:48 +00:00
2022-04-18 21:11:32 +00:00
2020-02-16 11:48:22 +01:00
2021-07-21 21:49:19 +02:00
2021-07-21 21:49:19 +02:00
2021-07-21 21:49:19 +02:00
2020-02-16 16:26:35 +01:00
2012-11-15 18:24:16 +01:00
2010-07-12 05:32:07 +02:00
2022-02-06 16:46:42 +00:00
2018-11-08 15:07:17 +00:00
2020-04-26 07:35:14 +00:00