Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lib: fmt: Update to 10.2.1 #53

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/fmt
Submodule fmt updated 60 files
+8 −0 .github/dependabot.yml
+3 −3 .github/workflows/cifuzz.yml
+1 −1 .github/workflows/doc.yml
+26 −0 .github/workflows/lint.yml
+1 −1 .github/workflows/linux.yml
+13 −3 .github/workflows/macos.yml
+65 −0 .github/workflows/scorecard.yml
+3 −3 .github/workflows/windows.yml
+13 −26 .gitignore
+24 −12 CMakeLists.txt
+5,533 −0 ChangeLog.md
+0 −5,687 ChangeLog.rst
+0 −0 LICENSE
+490 −0 README.md
+0 −540 README.rst
+6 −6 doc/_static/bootstrap.min.js
+116 −86 doc/api.rst
+10 −5 doc/build.py
+11 −4 doc/syntax.rst
+38 −0 doc/usage.rst
+7 −6 include/fmt/args.h
+226 −253 include/fmt/chrono.h
+48 −38 include/fmt/color.h
+27 −99 include/fmt/compile.h
+328 −310 include/fmt/core.h
+93 −96 include/fmt/format-inl.h
+426 −626 include/fmt/format.h
+28 −24 include/fmt/os.h
+69 −33 include/fmt/ostream.h
+131 −135 include/fmt/printf.h
+23 −17 include/fmt/ranges.h
+250 −62 include/fmt/std.h
+32 −32 include/fmt/xchar.h
+2 −10 src/fmt.cc
+24 −12 src/os.cc
+1 −1 support/AndroidManifest.xml
+45 −19 support/manage.py
+0 −159 support/rst2md.py
+6 −1 test/CMakeLists.txt
+245 −225 test/chrono-test.cc
+1 −0 test/compile-fp-test.cc
+28 −44 test/compile-test.cc
+35 −9 test/core-test.cc
+3 −95 test/format-impl-test.cc
+498 −470 test/format-test.cc
+1 −1 test/gtest-extra-test.cc
+2 −2 test/gtest-extra.cc
+1 −1 test/gtest-extra.h
+1 −1 test/gtest/gmock-gtest-all.cc
+4 −4 test/os-test.cc
+18 −1 test/ostream-test.cc
+4 −4 test/posix-mock.h
+11 −30 test/printf-test.cc
+92 −29 test/ranges-test.cc
+103 −31 test/scan-test.cc
+559 −139 test/scan.h
+98 −13 test/std-test.cc
+6 −2 test/util.cc
+14 −12 test/util.h
+86 −38 test/xchar-test.cc
Loading