Skip to content

Commit

Permalink
Merge pull request #225 from euripedesrocha/master
Browse files Browse the repository at this point in the history
fmt: Update to latest version(10.1.0) (IEC-38)
  • Loading branch information
igrr authored Sep 4, 2023
2 parents 7388928 + 5f68233 commit 1ff12d6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
[submodule "fmt/fmt"]
path = fmt/fmt
url = https://github.com/fmtlib/fmt.git
sbom-version = 9.1.0
sbom-version = 10.1.0
sbom-cpe = cpe:2.3:a:fmt:fmt:{}:*:*:*:*:*:*:*
sbom-supplier = Organization: fmt <https://fmt.dev/latest/index.html>
sbom-url = https://github.com/fmtlib/fmt/
sbom-description = A modern formatting library
sbom-hash = a33701196adfad74917046096bf5a2aa0ab0bb50
sbom-hash = e57ca2e3685b160617d3d95fcd9e789c4e06ca88

[submodule "esp_delta_ota/detools"]
path = esp_delta_ota/detools
Expand Down
1 change: 1 addition & 0 deletions fmt/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
idf_component_register( )

set(FMT_INSTALL OFF)
add_subdirectory(fmt)

target_link_libraries(${COMPONENT_LIB} INTERFACE fmt::fmt)
Expand Down
2 changes: 1 addition & 1 deletion fmt/fmt
Submodule fmt updated 69 files
+8 −0 .github/dependabot.yml
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+9 −1 .github/workflows/doc.yml
+30 −13 .github/workflows/linux.yml
+17 −2 .github/workflows/macos.yml
+12 −4 .github/workflows/windows.yml
+98 −41 CMakeLists.txt
+618 −1 ChangeLog.rst
+1 −1 LICENSE.rst
+39 −28 README.rst
+200 −145 doc/api.rst
+5 −6 doc/build.py
+134 −8 doc/syntax.rst
+1 −1 include/fmt/args.h
+466 −327 include/fmt/chrono.h
+18 −37 include/fmt/color.h
+27 −104 include/fmt/compile.h
+742 −1,141 include/fmt/core.h
+91 −152 include/fmt/format-inl.h
+1,065 −783 include/fmt/format.h
+44 −71 include/fmt/os.h
+22 −50 include/fmt/ostream.h
+201 −174 include/fmt/printf.h
+158 −145 include/fmt/ranges.h
+306 −37 include/fmt/std.h
+62 −33 include/fmt/xchar.h
+40 −29 src/fmt.cc
+1 −5 src/format.cc
+99 −62 src/os.cc
+3 −3 support/Vagrantfile
+0 −1 support/bazel/.bazelrc
+1 −1 support/bazel/.bazelversion
+2 −2 support/bazel/BUILD.bazel
+5 −4 support/bazel/README.md
+1 −1 support/build.gradle
+0 −54 support/cmake/cxx14.cmake
+7 −0 support/rst2md.py
+15 −3 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+1 −1 test/args-test.cc
+386 −26 test/chrono-test.cc
+2 −2 test/compile-error-test/CMakeLists.txt
+1 −0 test/compile-fp-test.cc
+7 −40 test/compile-test.cc
+119 −239 test/core-test.cc
+2 −0 test/enforce-checks-test.cc
+1 −1 test/find-package-test/CMakeLists.txt
+27 −91 test/format-impl-test.cc
+278 −329 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+2 −0 test/gtest-extra-test.cc
+1 −6 test/gtest-extra.h
+1 −7 test/gtest/CMakeLists.txt
+1 −1 test/gtest/gmock-gtest-all.cc
+2 −2 test/mock-allocator.h
+36 −88 test/module-test.cc
+15 −56 test/os-test.cc
+16 −47 test/ostream-test.cc
+1 −7 test/posix-mock-test.cc
+0 −2 test/posix-mock.h
+13 −37 test/printf-test.cc
+138 −35 test/ranges-test.cc
+1 −1 test/scan-test.cc
+17 −14 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+179 −20 test/std-test.cc
+2 −6 test/util.h
+118 −55 test/xchar-test.cc
2 changes: 1 addition & 1 deletion fmt/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "9.1.0"
version: "10.1.0"
description: Formatting library providing a fast and safe alternative to C stdio and C++ iostreams.
url: https://github.com/espressif/idf-extra-components/tree/master/fmt
dependencies:
Expand Down

0 comments on commit 1ff12d6

Please sign in to comment.