From 9792a9ff987905c76b55744fc088b48ca5bb8548 Mon Sep 17 00:00:00 2001 From: Grufoony Date: Tue, 18 Aug 2026 16:31:21 +0200 Subject: [PATCH 1/2] Update dependencies --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 620d8a08..c50af4f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -109,7 +109,7 @@ set(CSV_BUILD_PROGRAMS FetchContent_Declare( csv-parser GIT_REPOSITORY https://github.com/vincentlaucsb/csv-parser - GIT_TAG 5.2.0) + GIT_TAG 5.3.0) FetchContent_GetProperties(csv-parser) if(NOT csv-parser_POPULATED) FetchContent_MakeAvailable(csv-parser) @@ -143,7 +143,7 @@ endif() FetchContent_Declare( simdjson GIT_REPOSITORY https://github.com/simdjson/simdjson - GIT_TAG v4.6.1) + GIT_TAG v4.6.7) FetchContent_GetProperties(simdjson) if(NOT simdjson_POPULATED) FetchContent_MakeAvailable(simdjson) @@ -217,7 +217,7 @@ if(BUILD_PYTHON_BINDINGS) FetchContent_Declare( nanobind GIT_REPOSITORY https://github.com/wjakob/nanobind.git - GIT_TAG v2.13.0) + GIT_TAG v2.15.0) FetchContent_GetProperties(nanobind) if(NOT nanobind_POPULATED) FetchContent_MakeAvailable(nanobind) From 6b9b41731de46fb08f432991da08d313639973c2 Mon Sep 17 00:00:00 2001 From: Grufoony Date: Tue, 18 Aug 2026 16:32:01 +0200 Subject: [PATCH 2/2] Bump version --- CITATION.cff | 4 ++-- src/dsf/dsf.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 125caff1..582f1458 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -12,5 +12,5 @@ authors: repository-code: 'https://github.com/Grufoony/DynamicalSystemFramework' url: 'https://grufoony.github.io/DynamicalSystemFramework/' license: AGPL-3.0-only -version: 7.0.0 -date-released: '2026-08-06' +version: 7.0.1 +date-released: '2026-08-18' diff --git a/src/dsf/dsf.hpp b/src/dsf/dsf.hpp index 632b1af3..75d15e8b 100644 --- a/src/dsf/dsf.hpp +++ b/src/dsf/dsf.hpp @@ -9,7 +9,7 @@ static constexpr uint8_t DSF_VERSION_MAJOR = 7; static constexpr uint8_t DSF_VERSION_MINOR = 0; -static constexpr uint8_t DSF_VERSION_PATCH = 0; +static constexpr uint8_t DSF_VERSION_PATCH = 1; static auto const DSF_VERSION = std::format("{}.{}.{}", DSF_VERSION_MAJOR, DSF_VERSION_MINOR, DSF_VERSION_PATCH);