From 8c952bd0762c2962c5ac1b2bf8af075b2b4c3500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 31 May 2022 11:49:14 +0200 Subject: [PATCH] Point to 3.0.1 in FetchContent example Closes #2326 Closes #2438 --- 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 49330083..347cfd5a 100644 --- a/docs/cmake-integration.md +++ b/docs/cmake-integration.md @@ -51,7 +51,7 @@ Include(FetchContent) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v3.0.0-preview3 + GIT_TAG v3.0.1 # or a later release ) FetchContent_MakeAvailable(Catch2)