From e7638fcc415a421c12bfa98b7765b5f4f5fd13b3 Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Mon, 15 Dec 2025 10:39:52 -0500 Subject: [PATCH 1/4] update ports-of-call major version and spiner minor version --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9b76ee34..4a37bed31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.24) -set(SPINER_VERSION 1.6.4) +set(SPINER_VERSION 1.7.4) project( spiner VERSION ${SPINER_VERSION} @@ -90,7 +90,7 @@ if(NOT TARGET ports-of-call::ports-of-call) FetchContent_Declare( ports-of-call GIT_REPOSITORY https://github.com/lanl/ports-of-call - GIT_TAG v1.5.1 # TODO: update if needed + GIT_TAG v2.0.0 # TODO: update if needed ) set(SPINER_DEP_LIST "ports-of-call") endif() From ea53bd0dd1843111f53c00c2228d700d8256fbf8 Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Mon, 15 Dec 2025 10:40:18 -0500 Subject: [PATCH 2/4] 1.7.0 not 1.6.4 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a37bed31..8cebc12a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.24) -set(SPINER_VERSION 1.7.4) +set(SPINER_VERSION 1.7.0) project( spiner VERSION ${SPINER_VERSION} From a3761cb1c00b7acdbcc8028e2f2370d831a62413 Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Mon, 15 Dec 2025 10:41:13 -0500 Subject: [PATCH 3/4] CC --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8cebc12a6..ef770b344 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------# -# © 2021. Triad National Security, LLC. All rights reserved. This program was +# © 2025. Triad National Security, LLC. All rights reserved. This program was # produced under U.S. Government contract 89233218CNA000001 for Los Alamos # National Laboratory (LANL), which is operated by Triad National Security, LLC # for the U.S. Department of Energy/National Nuclear Security Administration. From 77697cfbdb3537e293a7b46124cdceb012d6156a Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Mon, 15 Dec 2025 10:49:48 -0500 Subject: [PATCH 4/4] wow a typo in the tests... just sneaking this fix in... --- test/test.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/test/test.cpp b/test/test.cpp index cfddb9f0a..1086e1f03 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -792,12 +792,13 @@ SCENARIO("Copying a DataBox to device", "[DataBox][GetOnDevice]") { printf("free db_host\n"); free(db_host); } - GIVEN("An empty databox"); - DataBox db; - WHEN("We copy it to device") { - DataBox db2 = db.getOnDevice(); - THEN("The new object is still empty") { - REQUIRE(db.dataStatus() == Spiner::DataStatus::Empty); + GIVEN("An empty databox") { + DataBox db; + WHEN("We copy it to device") { + DataBox db2 = db.getOnDevice(); + THEN("The new object is still empty") { + REQUIRE(db.dataStatus() == Spiner::DataStatus::Empty); + } } } }