-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* regenerate f2003 interfaces * update version numbers * update hashes in git-blame-ignore-revs * update changelog --------- Co-authored-by: Cody Balos <[email protected]>
- Loading branch information
Showing
1,797 changed files
with
2,720 additions
and
2,535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
78770ef9b40fb163bf6d0fd582b6a449f0298585 | ||
e75d0c03345b230def5713cda2e1b2748171634b | ||
# Apply formatting across sundials | ||
fab1cecb7d91cff53b31730af5d00ff154c3b6ce | ||
# Remove deprecated types in 7.0.0 | ||
cc6960349aa92e2bcad9168a6dacff99b21c329c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# and Slaven Peles @ LLNL | ||
# --------------------------------------------------------------- | ||
# SUNDIALS Copyright Start | ||
# Copyright (c) 2002-2023, Lawrence Livermore National Security | ||
# Copyright (c) 2002-2024, Lawrence Livermore National Security | ||
# and Southern Methodist University. | ||
# All rights reserved. | ||
# | ||
|
@@ -43,18 +43,18 @@ include(FindPackageHandleStandardArgs) | |
# Set some variables with info on the SUNDIALS project | ||
set(PACKAGE_BUGREPORT "[email protected]") | ||
set(PACKAGE_NAME "SUNDIALS") | ||
set(PACKAGE_STRING "SUNDIALS 6.7.0") | ||
set(PACKAGE_STRING "SUNDIALS 7.0.0-rc.1") | ||
set(PACKAGE_TARNAME "sundials") | ||
|
||
# Set SUNDIALS version numbers | ||
sundials_git_version() # sets SUNDIALS_GIT_VERSION | ||
message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}") | ||
|
||
# (use "" for the version label if none is needed) | ||
set(PACKAGE_VERSION_MAJOR "6") | ||
set(PACKAGE_VERSION_MINOR "7") | ||
set(PACKAGE_VERSION_MAJOR "7") | ||
set(PACKAGE_VERSION_MINOR "0") | ||
set(PACKAGE_VERSION_PATCH "0") | ||
set(PACKAGE_VERSION_LABEL "") | ||
set(PACKAGE_VERSION_LABEL "rc.1") | ||
|
||
if(PACKAGE_VERSION_LABEL) | ||
set(PACKAGE_VERSION | ||
|
@@ -68,38 +68,38 @@ endif() | |
|
||
# Specify the VERSION and SOVERSION for shared libraries | ||
|
||
set(arkodelib_VERSION "5.7.0") | ||
set(arkodelib_SOVERSION "5") | ||
set(arkodelib_VERSION "6.0.0-rc.1") | ||
set(arkodelib_SOVERSION "6") | ||
|
||
set(cvodelib_VERSION "6.7.0") | ||
set(cvodelib_SOVERSION "6") | ||
set(cvodelib_VERSION "7.0.0-rc.1") | ||
set(cvodelib_SOVERSION "7") | ||
|
||
set(cvodeslib_VERSION "6.7.0") | ||
set(cvodeslib_SOVERSION "6") | ||
set(cvodeslib_VERSION "7.0.0-rc.1") | ||
set(cvodeslib_SOVERSION "7") | ||
|
||
set(idalib_VERSION "6.7.0") | ||
set(idalib_SOVERSION "6") | ||
set(idalib_VERSION "7.0.0-rc.1") | ||
set(idalib_SOVERSION "7") | ||
|
||
set(idaslib_VERSION "5.7.0") | ||
set(idaslib_SOVERSION "5") | ||
set(idaslib_VERSION "6.0.0-rc.1") | ||
set(idaslib_SOVERSION "6") | ||
|
||
set(kinsollib_VERSION "6.7.0") | ||
set(kinsollib_SOVERSION "6") | ||
set(kinsollib_VERSION "7.0.0-rc.1") | ||
set(kinsollib_SOVERSION "7") | ||
|
||
set(cpodeslib_VERSION "0.0.0") | ||
set(cpodeslib_SOVERSION "0") | ||
|
||
set(nveclib_VERSION "6.7.0") | ||
set(nveclib_SOVERSION "6") | ||
set(nveclib_VERSION "7.0.0-rc.1") | ||
set(nveclib_SOVERSION "7") | ||
|
||
set(sunmatrixlib_VERSION "4.7.0") | ||
set(sunmatrixlib_SOVERSION "4") | ||
set(sunmatrixlib_VERSION "5.0.0-rc.1") | ||
set(sunmatrixlib_SOVERSION "5") | ||
|
||
set(sunlinsollib_VERSION "4.7.0") | ||
set(sunlinsollib_SOVERSION "4") | ||
set(sunlinsollib_VERSION "5.0.0-rc.1") | ||
set(sunlinsollib_SOVERSION "5") | ||
|
||
set(sunnonlinsollib_VERSION "3.7.0") | ||
set(sunnonlinsollib_SOVERSION "3") | ||
set(sunnonlinsollib_VERSION "4.0.0-rc.1") | ||
set(sunnonlinsollib_SOVERSION "4") | ||
|
||
set(sundialslib_VERSION | ||
"${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_PATCH}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.