Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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'
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/dsf/dsf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Loading