From 6ac8e4645132648364bdc098a2902a7f5573f058 Mon Sep 17 00:00:00 2001 From: Grufoony Date: Tue, 17 Feb 2026 09:51:33 +0100 Subject: [PATCH 1/2] Update dependencies --- CMakeLists.txt | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bafd8ce1..30f618ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,7 +99,7 @@ include(FetchContent) FetchContent_Declare( csv-parser GIT_REPOSITORY https://github.com/vincentlaucsb/csv-parser - GIT_TAG 2.4.1) + GIT_TAG 2.4.2) FetchContent_GetProperties(csv-parser) if(NOT csv-parser_POPULATED) FetchContent_MakeAvailable(csv-parser) @@ -199,7 +199,7 @@ if(BUILD_PYTHON_BINDINGS) FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v3.0.1) + GIT_TAG v3.0.2) FetchContent_GetProperties(pybind11) if(NOT pybind11_POPULATED) FetchContent_MakeAvailable(pybind11) diff --git a/README.md b/README.md index 2fcd8531..113ec3a1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Standard](https://img.shields.io/badge/C%2B%2B-20/23-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![TBB](https://img.shields.io/badge/TBB-2022.3.0-blue.svg)](https://github.com/oneapi-src/oneTBB) [![SPDLOG](https://img.shields.io/badge/spdlog-1.17.0-blue.svg)](https://github.com/gabime/spdlog) -[![CSV](https://img.shields.io/badge/csv_parser-4.3.1-blue.svg)](https://github.com/vincentlaucsb/csv-parser) +[![CSV](https://img.shields.io/badge/csv_parser-2.4.2-blue.svg)](https://github.com/vincentlaucsb/csv-parser) [![JSON](https://img.shields.io/badge/simdjson-4.2.4-blue.svg)](https://github.com/simdjson/simdjson) [![SQLite](https://img.shields.io/badge/SQLiteCpp-3.3.3-blue.svg)](https://github.com/SRombauts/SQLiteCpp) [![codecov](https://codecov.io/gh/physycom/DynamicalSystemFramework/graph/badge.svg?token=JV53J6IUJ3)](https://codecov.io/gh/physycom/DynamicalSystemFramework) From 0337d33dd41be66cba09d58eb335742277159f1f Mon Sep 17 00:00:00 2001 From: Grufoony Date: Tue, 17 Feb 2026 09:52:39 +0100 Subject: [PATCH 2/2] Version 5.0.3 --- src/dsf/dsf.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsf/dsf.hpp b/src/dsf/dsf.hpp index 6f4931a1..62074b7e 100644 --- a/src/dsf/dsf.hpp +++ b/src/dsf/dsf.hpp @@ -9,7 +9,7 @@ static constexpr uint8_t DSF_VERSION_MAJOR = 5; static constexpr uint8_t DSF_VERSION_MINOR = 0; -static constexpr uint8_t DSF_VERSION_PATCH = 2; +static constexpr uint8_t DSF_VERSION_PATCH = 3; static auto const DSF_VERSION = std::format("{}.{}.{}", DSF_VERSION_MAJOR, DSF_VERSION_MINOR, DSF_VERSION_PATCH);