From 28f4e2ff01dd1b156764e64c5acfb991feace7b1 Mon Sep 17 00:00:00 2001 From: Reddimus Date: Sun, 7 Jun 2026 00:52:14 -0700 Subject: [PATCH] docs(readme): bump FetchContent GIT_TAG to latest release v0.3.1 The README's FetchContent example pinned a superseded tag; consumers copy-pasting it pulled an older release than the current one. Point it at the latest tag (matches project VERSION in CMakeLists). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81fd75e..38b05ce 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ make coverage # Code coverage report (requires lcov) include(FetchContent) FetchContent_Declare(ncei-cpp GIT_REPOSITORY https://github.com/Reddimus/ncei-cpp.git - GIT_TAG v0.3.0 + GIT_TAG v0.3.1 ) FetchContent_MakeAvailable(ncei-cpp) target_link_libraries(myapp PRIVATE ncei)