Package Release Info

fmt-5.3.0-bp151.1.1

Update Info: Base Release
Available in Package Hub : 15 SP1

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

fmt-devel
libfmt5
libfmt5-64bit

Change Logs

* Mon Mar 25 2019 olaf@aepfle.de
- Install fmt.pc into libdir with
  0001-install-pkg-config-file-into-libdir.patch
* Sat Jan 12 2019 Ferdinand Thiessen <rpm@fthiessen.de>
- Update to version 5.3.0:
  * Introduced experimental chrono formatting support
  * Added experimental support for emphasis
  (bold, italic, underline, strikethrough), colored output to a
  file stream, and improved colored formatting API
  * Added support for 4-bit terminal colors
  * Made std::string_view work as a format string
  * Added wide string support to compile-time format string checks
  * Made colored print functions work with wide strings
  * Introduced experimental Unicode support
  * Removed undocumented basic_fixed_buffer which has been
  superseded by the iterator-based API
  * Disallowed repeated leading zeros in an argument ID
  * Deprecated fmt::visit, parse_context, and wparse_context.
  Use fmt::visit_format_arg, format_parse_context, and
  wformat_parse_context instead.
- Removed upstream merged fix-fmt_pc.patch
* Thu Dec 06 2018 Jan Engelhardt <jengelh@inai.de>
- Do without em dashes in summaries.
* Thu Dec 06 2018 Luigi Baldoni <aloisio@gmx.com>
- Added baselibs.conf as source
* Fri Nov 09 2018 munix9@googlemail.com
- initial package for version 5.2.1
Version: 11.1.4-160000.2.2
* Wed Feb 26 2025 jengelh@inai.de
- Update to release 11.1.4
  * Improved the logic of switching between fixed and exponential
    format for float.
  * Moved is_compiled_string to the public API.
* Sun Jan 26 2025 jengelh@inai.de
- Update to release 11.1.3
  * Readded `args()` to `fmt::format_context`
- Delete 0001-Restore-ABI-compatibility.patch (merged)
* Sat Jan 11 2025 jengelh@inai.de
- Add 0001-Restore-ABI-compatibility.patch [boo#1235078]
* Sat Dec 28 2024 jengelh@inai.de
- Update to release 11.1.1
  * Restore ABI compat with 11.0.2
* Wed Dec 25 2024 jengelh@inai.de
- Update to release 11.1
  * Reduced debug (unoptimized) binary code size and the number of
    template instantiations when passing formatting arguments
  * Added an experimental fmt::writer API that can be used for
    writing to different destinations such as files or strings
  * Made std::expected<void, E> formattable
  * Made fmt::is_formattable<void> SFINAE-friendly
  * Added the n specifier for tuples and pairs
  * Added support for tuple-like types to ``fmt::join``
  * Added a formatter for ``std::reference_wrapper``
  * Added experimental padding support (glibc ``strftime``
    extension) to ``%m``, ``%j`` and ``%Y``
  * Made ``fmt::appender`` satisfy the ``std::output_iterator`` concept
  * Added support for UTF-32 code units greater than 0xFFFF in fill
* Sat Jul 20 2024 jengelh@inai.de
- Update to release 11.0.2
  * Fixed performance regressions when using
    ``std::back_insert_iterator`` with`` fmt::format_to``.
  * Made ``formatter<std::string_view>::parse`` work with types
    convertible to ``std::string_view``.
  * Made ``volatile void *`` formattable.
  * Made ``fmt::context`` iterator compatible with STL algorithms
    that rely on the iterator category.
* Wed Jul 10 2024 jengelh@inai.de
- Update to release 11.0.1
  * Added fmt/base.h which provides a subset of the API with
    minimal include dependencies and enough functionality to
    replace all uses of the printf family of functions.
  * Improved integration with stdio in fmt::print, enabling
    direct writes into a C stream buffer in common cases.
  * fmt::format_to no longer exceeds buffers, instead it will
    truncate.
  * Added formatters for std::{expected,complex,type_info},
    std::chrono::{day,month,year,year_month_day}.
* Thu Jan 04 2024 jengelh@inai.de
- Update to release 10.2.1
  * Restore symbol write_console(std::FILE* f, string_view text)
* Mon Jan 01 2024 jengelh@inai.de
- Update to release 10.2
  * Added support for the %j specifier (the number of days) for
    std::chrono::duration.
  * Added support for the chrono suffix for days and changed the
    suffix for minutes from "m" to the correct "min".
* Tue Aug 29 2023 jengelh@inai.de
- Update to release 10.1.1
  * Added formatters for std::atomic and atomic_flag.
  * Fixed an error about partial specialization of
    formatter<string> after instantiation (GCC, C++20 mode).
  * Made fmt::to_string work with types that have format_as
    overloads.
  * Made formatted_size work with integral format specifiers at
    compile time.