From c5641bec4bdaef5fee639cfa611bb93e01681859 Mon Sep 17 00:00:00 2001 From: jchristopherson Date: Mon, 29 Jun 2026 15:39:41 -0500 Subject: [PATCH 1/2] Update version info --- CMakeLists.txt | 2 +- fpm.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index afdef22..6b450db 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.24) project( fplot LANGUAGES Fortran - VERSION 1.8.9 + VERSION 1.8.10 ) # Confgiure everything diff --git a/fpm.toml b/fpm.toml index 616944b..cba8664 100644 --- a/fpm.toml +++ b/fpm.toml @@ -1,5 +1,5 @@ name = "fplot" -version = "1.8.9" +version = "1.8.10" license = "GPL-3.0" author = "Jason Christopherson" maintainer = "Jason Christopherson" From 305b31bad941adfad8d83d5017bb5091ba653bd8 Mon Sep 17 00:00:00 2001 From: jchristopherson Date: Mon, 29 Jun 2026 15:39:52 -0500 Subject: [PATCH 2/2] Clean up --- examples/CMakeLists.txt | 5 +---- src/CMakeLists.txt | 4 ---- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index b05a4c1..feda836 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,3 @@ -find_package(fstring QUIET) - # Example 1 add_executable(generic_2d_plot generic_2d_plot.f90) target_link_libraries(generic_2d_plot fplot) @@ -131,7 +129,6 @@ target_link_libraries(arrow_example fplot) # Example 33 add_executable(custom_colormap_example custom_colormap_example.f90) target_link_libraries(custom_colormap_example fplot) -target_link_libraries(custom_colormap_example forcolormap) # Example 34 add_executable(variable_point_size_2d_example variable_point_size_2d_example.f90) @@ -151,7 +148,7 @@ target_link_libraries(margins_example fplot) # Example 38 add_executable(box_whisker_example box_whisker_example.f90) -target_link_libraries(box_whisker_example fplot fstring::fstring) +target_link_libraries(box_whisker_example fplot) # Example 39 add_executable(jitter_plot_example jitter_plot_example.f90) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0febaba..3391d04 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -125,10 +125,6 @@ target_link_libraries( ${PROJECT_NAME} PUBLIC ${FERROR_LIBRARIES} -) -target_link_libraries( - ${PROJECT_NAME} - PRIVATE ${COLLECTIONS_LIBRARIES} ${GEOMPACK_LIBRARIES} ${FSTRING_LIBRARIES}