From 4fad242273e7286407b49a05f010bfabe9ef98db Mon Sep 17 00:00:00 2001 From: Jason Christopherson Date: Mon, 20 Jul 2026 10:29:05 -0500 Subject: [PATCH] Bump project version from 1.0.9 to 1.0.10 --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f882a4c..2c574ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,17 +2,17 @@ cmake_minimum_required(VERSION 3.24) project( collections LANGUAGES Fortran - VERSION 1.0.9 + VERSION 1.0.10 ) set(CMAKE_Fortran_STANDARD 2018) set(CMAKE_Fortran_STANDARD_REQUIRED TRUE) -# Source -add_subdirectory(src) - # Configure everything add_subdirectory(configure) +# Source +add_subdirectory(src) + # Installation Instructions install( EXPORT ${PROJECT_NAME}-targets @@ -34,4 +34,4 @@ option(BUILD_COLLECTIONS_EXAMPLES "Build collections examples") message(STATUS "Build COLLECTIONS examples: ${BUILD_COLLECTIONS_EXAMPLES}") if (${BUILD_COLLECTIONS_EXAMPLES}) add_subdirectory(examples) -endif() \ No newline at end of file +endif()