Skip to content

Commit

Permalink
BTF 2.3.0: version update
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Nov 28, 2023
1 parent 27d59c5 commit f3b633e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 5 additions & 5 deletions BTF/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

cmake_minimum_required ( VERSION 3.20 )

set ( BTF_DATE "Sept 18, 2023" )
set ( BTF_DATE "Dec 30, 2023" )
set ( BTF_VERSION_MAJOR 2 CACHE STRING "" FORCE )
set ( BTF_VERSION_MINOR 2 CACHE STRING "" FORCE )
set ( BTF_VERSION_SUB 1 CACHE STRING "" FORCE )
set ( BTF_VERSION_MINOR 3 CACHE STRING "" FORCE )
set ( BTF_VERSION_SUB 0 CACHE STRING "" FORCE )

message ( STATUS "Building BTF version: v"
${BTF_VERSION_MAJOR}.
Expand Down Expand Up @@ -44,10 +44,10 @@ include ( SuiteSparsePolicy )
#-------------------------------------------------------------------------------

if ( NOT SUITESPARSE_ROOT_CMAKELISTS )
find_package ( SuiteSparse_config 7.2.0
find_package ( SuiteSparse_config 7.4.0
PATHS ${CMAKE_SOURCE_DIR}/../SuiteSparse_config/build NO_DEFAULT_PATH )
if ( NOT TARGET SuiteSparse::SuiteSparseConfig )
find_package ( SuiteSparse_config 7.2.0 REQUIRED )
find_package ( SuiteSparse_config 7.4.0 REQUIRED )
endif ( )
endif ( )

Expand Down
4 changes: 4 additions & 0 deletions BTF/Doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Dec 30, 2023: version 2.3.0

* major change to build system: by Markus Mützel

Sept 18, 2023: version 2.2.1

* cmake update: add "None" build type, from Antonio Rojas, for Arch Linux
Expand Down
6 changes: 3 additions & 3 deletions BTF/Include/btf.h
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,10 @@ int64_t btf_l_order (int64_t, int64_t *, int64_t *, double , double *,
* #endif
*/

#define BTF_DATE "Sept 18, 2023"
#define BTF_DATE "Dec 30, 2023"
#define BTF_MAIN_VERSION 2
#define BTF_SUB_VERSION 2
#define BTF_SUBSUB_VERSION 1
#define BTF_SUB_VERSION 3
#define BTF_SUBSUB_VERSION 0

#define BTF_VERSION_CODE(main,sub) ((main) * 1000 + (sub))
#define BTF_VERSION BTF_VERSION_CODE(BTF_MAIN_VERSION,BTF_SUB_VERSION)
Expand Down

0 comments on commit f3b633e

Please sign in to comment.