Skip to content

Commit 0ddfe4d

Browse files
dates and changelog
1 parent 931ed09 commit 0ddfe4d

File tree

3 files changed

+34
-7
lines changed

3 files changed

+34
-7
lines changed

ChangeLog

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Mar XX, 2024: version 7.7.0
1+
Mar XX, 2024: version 7.7.0 FIXME date
22

33
* SPEX 3.1.0: major revision to API, new methods. Added SPEX_Cholesky,
44
SPEX_Backslash, and python interface. MATLAB interface revised.
55
* Example 1.7.0: revised for change in SPEX API
6-
* GraphBLAS 9.1.0: revised definitions of C11 or MSVC complex type
6+
* GraphBLAS 9.1.0: revised defn of C11 or MSVC complex type, bug fix
7+
* CXSparse 4.4.0: revise malloc/calloc/realloc/free wrappers
78
* All others: minor changes to build system
8-
99
* Package versions in this release:
1010
SuiteSparse_config 7.7.0
1111
AMD 3.3.2
@@ -15,7 +15,7 @@ Mar XX, 2024: version 7.7.0
1515
CHOLMOD 5.2.1
1616
COLAMD 3.3.3
1717
CSparse 4.3.2
18-
CXSparse 4.3.2
18+
CXSparse 4.4.0
1919
Example 1.7.0
2020
GraphBLAS 9.1.0
2121
KLU 2.3.3
@@ -28,6 +28,33 @@ Mar XX, 2024: version 7.7.0
2828
SPQR 4.3.3
2929
UMFPACK 6.3.3
3030

31+
Mar 2, 2024: version 7.6.1
32+
33+
* GraphBLAS 9.0.3: performance bug fix (JIT kernels were not compiled with
34+
OpenMP, since v8.3.1), and fix to Makefile ("make static")
35+
* SuiteSparse_config 7.6.1: version number, added link to math.js in README
36+
* Package versions in this release:
37+
SuiteSparse_config 7.6.1
38+
AMD 3.3.1
39+
BTF 2.3.1
40+
CAMD 3.3.1
41+
CCOLAMD 3.3.2
42+
CHOLMOD 5.2.0
43+
COLAMD 3.3.2
44+
CSparse 4.3.1
45+
CXSparse 4.3.1
46+
Example 1.6.2
47+
GraphBLAS 9.0.3
48+
KLU 2.3.2
49+
LDL 3.3.1
50+
LAGraph 1.1.2
51+
SuiteSparse_Mongoose 3.3.2
52+
ParU 0.1.2
53+
RBio 4.3.1
54+
SPEX 2.3.2
55+
SPQR 4.3.2
56+
UMFPACK 6.3.2
57+
3158
Jan 20, 2024: version 7.6.0
3259

3360
* CHOLMOD 5.2.0: bug fix (restore ABI compatibility with 5.0.x, i.e., 5.2.0

Example/Include/my_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
#endif
5050

5151
#include "cs.h"
52-
#if !defined (CXSPARSE__VERSION) || CXSPARSE__VERSION < SUITESPARSE__VERCODE(4,3,2)
53-
#error "This library requires CXSparse 4.3.2 or later"
52+
#if !defined (CXSPARSE__VERSION) || CXSPARSE__VERSION < SUITESPARSE__VERCODE(4,4,0)
53+
#error "This library requires CXSparse 4.4.0 or later"
5454
#endif
5555

5656
#if ! defined (NO_GRAPHBLAS)

LAGraph/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
cmake_minimum_required ( VERSION 3.20 ) # LAGraph can be built stand-alone
4040

4141
# version of LAGraph
42-
set ( LAGraph_DATE "Feb XX, 2024" )
42+
set ( LAGraph_DATE "Feb XX, 2024" ) # FIXME date for 7.7.0
4343
set ( LAGraph_VERSION_MAJOR 1 CACHE STRING "" FORCE )
4444
set ( LAGraph_VERSION_MINOR 1 CACHE STRING "" FORCE )
4545
set ( LAGraph_VERSION_SUB 3 CACHE STRING "" FORCE )

0 commit comments

Comments
 (0)