From c550bcd1ff24bc2148db9bff74a6da913e35cf5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 10 Apr 2026 22:59:40 +0000 Subject: [PATCH 1/3] externpro 25.07.18-17-gcf054a4 --- .devcontainer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer b/.devcontainer index 331e1b488048..cf054a4d69ed 160000 --- a/.devcontainer +++ b/.devcontainer @@ -1 +1 @@ -Subproject commit 331e1b4880485c95da9c48af1c03c76538e75839 +Subproject commit cf054a4d69edb1a88f5d4ee9354d1a57798a7081 From 79f2153616ca2b469c607ec92c4627ba6e10b8cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 10 Apr 2026 22:59:40 +0000 Subject: [PATCH 2/3] update .github/release-tag.json --- .github/release-tag.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/release-tag.json b/.github/release-tag.json index 54127969fd66..5e7626a0c7b8 100644 --- a/.github/release-tag.json +++ b/.github/release-tag.json @@ -1,4 +1,4 @@ { - "message": "xpro version 12.1.0.4 tag", - "tag": "xpv12.1.0.4" + "message": "xpro version 12.1.0.5 tag", + "tag": "xpv12.1.0.5" } From c0b0745e566db98bb256a9987cc15c2d5c6eec88 Mon Sep 17 00:00:00 2001 From: Scott M Anderson Date: Fri, 10 Apr 2026 17:38:45 -0600 Subject: [PATCH 3/3] test/gtest: use Threads::Threads fixes link error https://github.com/externpro/fmt/pull/44#issuecomment-4227340901 --- test/gtest/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gtest/CMakeLists.txt b/test/gtest/CMakeLists.txt index 0cccc61fec5a..36a453338576 100644 --- a/test/gtest/CMakeLists.txt +++ b/test/gtest/CMakeLists.txt @@ -13,7 +13,7 @@ target_compile_features(gtest PUBLIC cxx_std_11) find_package(Threads) if (Threads_FOUND) - target_link_libraries(gtest ${CMAKE_THREAD_LIBS_INIT}) + target_link_libraries(gtest Threads::Threads) else () target_compile_definitions(gtest PUBLIC GTEST_HAS_PTHREAD=0) endif ()