From b6a3aa1bfe5eed320967efacc8ccc5186a44b0a3 Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Fri, 24 Apr 2026 16:17:23 -0400 Subject: [PATCH] Update googletest to use 1.17.0 exactly With the '^x.y.z' semantics, the version can upgrade out from under us and change dependencies, so this pins to an exact version. --- platformio.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio.ini b/platformio.ini index 35b3534e..35a985f0 100644 --- a/platformio.ini +++ b/platformio.ini @@ -156,7 +156,7 @@ lib_deps = [env:native] platform = native -build_flags = -std=c++14 +build_flags = -std=c++17 -I src -I test/mocks test_build_src = yes @@ -164,4 +164,4 @@ build_src_filter = -<*> +<../src/Utils.cpp> lib_deps = - google/googletest @ ^1.15.2 + google/googletest @ 1.17.0