From ac207fc90fcc6e7c5facde215128c41ff6f1a5ec Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sun, 15 Jun 2025 13:05:35 -0600 Subject: [PATCH] Use latest release in docs --- docs/cmake-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmake-integration.md b/docs/cmake-integration.md index cfb9853d..e63e67f6 100644 --- a/docs/cmake-integration.md +++ b/docs/cmake-integration.md @@ -52,7 +52,7 @@ Include(FetchContent) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v3.4.0 # or a later release + GIT_TAG v3.8.1 # or a later release ) FetchContent_MakeAvailable(Catch2)