Skip to content

Commit

Permalink
Only require C++14, not 17. Bump version to 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pghysels committed Oct 12, 2022
1 parent 03b592e commit fa75ee3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 7.0.1 Released Oct 2022
===============================
- Require C++14 instead of 17

Version 7.0.0 Released Oct 2022
===============================
- Many bugfixes and general improvements.
Expand All @@ -8,6 +12,9 @@ Version 7.0.0 Released Oct 2022
or for some problems lead to stack overflow, but for others it
drastically reduces memory usage. The old behavior can be restored
with --sp_enable_METIS_NodeNDP.
- Improvements to error handling, mostly related to zero pivots.
- Added new ordering options: AND, MMD, AMD
- Require C++-17


Version 6.3.1 Released March 2022
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.17)
project(STRUMPACK VERSION 7.0.0 LANGUAGES CXX C Fortran)
project(STRUMPACK VERSION 7.0.1 LANGUAGES CXX C Fortran)
cmake_policy(SET CMP0074 NEW)

option(STRUMPACK_USE_MPI "Build with MPI support" ON)
Expand Down Expand Up @@ -562,7 +562,7 @@ add_subdirectory(src)
target_sources(strumpack
PRIVATE ${PROJECT_BINARY_DIR}/StrumpackFortranCInterface.h)

target_compile_features(strumpack PUBLIC cxx_std_17)
target_compile_features(strumpack PUBLIC cxx_std_14)
set_target_properties(strumpack PROPERTIES CXX_EXTENSIONS OFF)

target_compile_options(strumpack PRIVATE
Expand Down

0 comments on commit fa75ee3

Please sign in to comment.