Skip to content

Commit

Permalink
Bump to v10.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaim committed Jan 9, 2024
1 parent f681858 commit 0196126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
: 1
name: fmt
version: 10.1.1
version: 10.2.1
summary: "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
license: MIT
description-file: README.md
Expand Down
2 changes: 1 addition & 1 deletion upstream
Submodule upstream updated 57 files
+1 −1 .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
+1 −1 .github/workflows/macos.yml
+4 −4 .github/workflows/scorecard.yml
+2 −2 .github/workflows/windows.yml
+13 −26 .gitignore
+18 −9 CMakeLists.txt
+5,533 −0 ChangeLog.md
+0 −5,922 ChangeLog.rst
+0 −0 LICENSE
+490 −0 README.md
+0 −545 README.rst
+6 −6 doc/_static/bootstrap.min.js
+72 −65 doc/api.rst
+8 −3 doc/build.py
+11 −4 doc/syntax.rst
+38 −0 doc/usage.rst
+6 −5 include/fmt/args.h
+152 −120 include/fmt/chrono.h
+44 −33 include/fmt/color.h
+9 −8 include/fmt/compile.h
+82 −35 include/fmt/core.h
+87 −71 include/fmt/format-inl.h
+265 −240 include/fmt/format.h
+24 −20 include/fmt/os.h
+64 −28 include/fmt/ostream.h
+10 −2 include/fmt/printf.h
+18 −15 include/fmt/ranges.h
+113 −41 include/fmt/std.h
+9 −8 include/fmt/xchar.h
+1 −3 src/fmt.cc
+9 −5 src/os.cc
+1 −1 support/AndroidManifest.xml
+45 −19 support/manage.py
+0 −166 support/rst2md.py
+6 −1 test/CMakeLists.txt
+237 −241 test/chrono-test.cc
+9 −6 test/compile-test.cc
+1 −8 test/format-impl-test.cc
+464 −436 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
+18 −1 test/ostream-test.cc
+4 −4 test/posix-mock.h
+2 −2 test/printf-test.cc
+67 −34 test/ranges-test.cc
+103 −31 test/scan-test.cc
+560 −138 test/scan.h
+54 −5 test/std-test.cc
+6 −2 test/util.cc
+14 −12 test/util.h
+71 −26 test/xchar-test.cc

0 comments on commit 0196126

Please sign in to comment.