Skip to content
Closed
Show file tree
Hide file tree
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 external/apache/commons-lang
Submodule commons-lang updated 444 files
2 changes: 1 addition & 1 deletion external/fmt
Submodule fmt updated 78 files
+1 −0 .github/CODEOWNERS
+8 −0 .github/SECURITY.md
+33 −0 .github/workflows/codeql.yml
+2 −2 .github/workflows/doc.yml
+2 −2 .github/workflows/fuzz.yml
+10 −9 .github/workflows/lint.yml
+24 −31 .github/workflows/linux.yml
+3 −0 .github/workflows/macos.yml
+143 −0 .github/workflows/release.yml
+8 −26 .github/workflows/supply-chain.yml
+3 −0 .github/workflows/windows.yml
+1 −0 .gitignore
+4 −2 CMakeLists.txt
+223 −0 ChangeLog.md
+18 −113 README.md
+0 −290 doc/python-license.txt
+256 −449 doc/syntax.md
+1 −1 include/fmt/args.h
+26 −14 include/fmt/base.h
+2 −1 include/fmt/chrono.h
+40 −4 include/fmt/color.h
+1 −1 include/fmt/compile.h
+7 −0 include/fmt/core.h
+15 −6 include/fmt/fmt-c.h
+16 −8 include/fmt/format-inl.h
+5 −4 include/fmt/format.h
+1 −1 include/fmt/os.h
+1 −1 include/fmt/ostream.h
+3 −1 include/fmt/printf.h
+30 −16 include/fmt/ranges.h
+8 −7 include/fmt/std.h
+1 −1 include/fmt/xchar.h
+33 −8 src/fmt-c.cc
+7 −5 src/fmt.cc
+1 −1 src/format.cc
+3 −2 src/os.cc
+6 −0 support/cmake-format-requirements.txt
+4 −0 support/doc-requirements.in
+502 −0 support/doc-requirements.txt
+52 −0 support/llvm-snapshot.gpg.key
+12 −9 support/mkdocs
+62 −21 support/release.py
+2 −4 test/CMakeLists.txt
+1 −1 test/args-test.cc
+1 −1 test/assert-test.cc
+11 −1 test/base-test.cc
+21 −1 test/c-test.c
+4 −2 test/chrono-test.cc
+13 −1 test/color-test.cc
+10 −0 test/compile-error-test/CMakeLists.txt
+17 −2 test/compile-test.cc
+1 −1 test/detect-stdfs.cc
+1 −1 test/enforce-checks-test.cc
+1 −3 test/format-impl-test.cc
+11 −12 test/format-test.cc
+1 −2 test/gtest-extra-test.cc
+1 −1 test/gtest-extra.cc
+1 −1 test/gtest-extra.h
+1 −1 test/mock-allocator.h
+24 −176 test/module-test.cc
+1 −1 test/no-builtin-types-test.cc
+1 −1 test/noexception-test.cc
+1 −2 test/os-test.cc
+1 −1 test/ostream-test.cc
+3 −3 test/posix-mock-test.cc
+1 −1 test/posix-mock.h
+20 −4 test/printf-test.cc
+1 −1 test/ranges-odr-test.cc
+26 −3 test/ranges-test.cc
+1 −3 test/scan-test.cc
+1 −1 test/scan.h
+1 −1 test/std-test.cc
+1 −1 test/test-assert.h
+1 −1 test/test-main.cc
+1 −1 test/unicode-test.cc
+1 −1 test/util.cc
+1 −1 test/util.h
+1 −3 test/xchar-test.cc
Loading