From 9589ce46dfb226c546a80a89fc390a0f3005349e Mon Sep 17 00:00:00 2001 From: Jeremy Nimmer Date: Sun, 1 Nov 2020 10:48:38 -0800 Subject: [PATCH] workspace: Upgrade fmt to latest release 7.1.0 --- common/text_logging.h | 2 +- tools/workspace/fmt/repository.bzl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/text_logging.h b/common/text_logging.h index 557d212f06d5..e204c83dcb77 100644 --- a/common/text_logging.h +++ b/common/text_logging.h @@ -23,7 +23,7 @@ not be compiled if debugging is turned off (-DNDEBUG is set): DRAKE_LOGGER_DEBUG("message: {}", something_conditionally_compiled); -The format string syntax is fmtlib; see https://fmt.dev/7.0.3/syntax.html. +The format string syntax is fmtlib; see https://fmt.dev/7.1.0/syntax.html. In particular, any class that overloads `operator<<` for `ostream` can be printed without any special handling. */ diff --git a/tools/workspace/fmt/repository.bzl b/tools/workspace/fmt/repository.bzl index 159b5ab7aaec..02bef4d2e65b 100644 --- a/tools/workspace/fmt/repository.bzl +++ b/tools/workspace/fmt/repository.bzl @@ -10,8 +10,8 @@ def fmt_repository( repository = "fmtlib/fmt", # When changing the fmt version, also update the URL in the file # overview docstring of drake/common/text_logging.h. - commit = "7.0.3", - sha256 = "b4b51bc16288e2281cddc59c28f0b4f84fed58d016fb038273a09f05f8473297", # noqa + commit = "7.1.0", + sha256 = "a53bce7e3b7ee8c7374723262a43356afff176b1684b86061748409e6f8b56c5", # noqa build_file = "@drake//tools/workspace/fmt:package.BUILD.bazel", mirrors = mirrors, )