From e33de8fc05ca80923a8216a8aecd6a1afc5e00af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 31 May 2022 12:31:02 +0200 Subject: [PATCH] Update FetchContent docs to use 2.13.9 --- docs/cmake-integration.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/cmake-integration.md b/docs/cmake-integration.md index 1cab907a..075d8faa 100644 --- a/docs/cmake-integration.md +++ b/docs/cmake-integration.md @@ -43,7 +43,8 @@ Include(FetchContent) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v2.13.1) + GIT_TAG v2.13.9 # or a later release +) FetchContent_MakeAvailable(Catch2)