From 71b82923ddb233d728b58c30eae446216585a784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fahller?= Date: Tue, 2 Jan 2024 10:11:31 +0100 Subject: [PATCH] Bump fmt-10 to 10.2.0 --- README.md | 4 ++-- common/install-fmt.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 69da59e..b0b0ac6 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ All images contain: * catch2-3.4.0 * fmt-8.1.1 * fmt-9.1.0 -* fmt-10.1.1 +* fmt-10.2.0 * benchmark-v1.8.3 -The installed libraries, Catch2-2, Catch2-3, fmt-8 and fmt-9 are located under +The installed libraries are located under `/usr/local/lib/c++{11,14,17,20,23}{libc++}` and they all have `CMake` packages, so for example, to build with C++17 and libc++, run `cmake` for your program with: diff --git a/common/install-fmt.sh b/common/install-fmt.sh index e8a389d..f32b33e 100755 --- a/common/install-fmt.sh +++ b/common/install-fmt.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -eou pipefail -VERSIONS="10.1.1 9.1.0 8.1.1" +VERSIONS="10.2.0 9.1.0 8.1.1" readonly CXX=$1 readonly CXX_STANDARDS="$2"