diff --git a/CHANGELOG.md b/CHANGELOG.md index 172fbf72..6fc44f84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2024.10.26 + - Added eigenvalue utilities (lae2, laev2, lasr). + - Refactor eigenvalue testers. + - Use std::hypot instead of lapy2, lapy3. + - Use to_lapack_int to convert int32 to int64. + 2024.05.31 - Added shared library version (ABI version 1.0.0) - Updated enum parameters to have `to_string`, `from_string`; diff --git a/CMakeLists.txt b/CMakeLists.txt index b5c4c7a5..6b739aaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 ) project( lapackpp - VERSION 2024.05.31 + VERSION 2024.10.26 LANGUAGES CXX ) diff --git a/GNUmakefile b/GNUmakefile index dbebb241..a1f2b244 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -325,7 +325,7 @@ LDFLAGS_clean = ${filter-out -fPIC, ${LDFLAGS}} .PHONY: ${pkg} ${pkg}: - perl -pe "s'#VERSION'2024.05.31'; \ + perl -pe "s'#VERSION'2024.10.26'; \ s'#PREFIX'${abs_prefix}'; \ s'#CXX\b'${CXX}'; \ s'#CXXFLAGS'${CXXFLAGS_clean}'; \ diff --git a/docs/doxygen/doxyfile.conf b/docs/doxygen/doxyfile.conf index 8b8570a6..9f4d45a0 100644 --- a/docs/doxygen/doxyfile.conf +++ b/docs/doxygen/doxyfile.conf @@ -40,7 +40,7 @@ PROJECT_NAME = "LAPACK++" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "2024.05.31" +PROJECT_NUMBER = "2024.10.26" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/include/lapack.hh b/include/lapack.hh index 949cd0b9..9cce0da9 100644 --- a/include/lapack.hh +++ b/include/lapack.hh @@ -9,8 +9,8 @@ #include "lapack/defines.h" // Version is updated by make_release.py; DO NOT EDIT. -// Version 2024.05.31 -#define LAPACKPP_VERSION 20240531 +// Version 2024.10.26 +#define LAPACKPP_VERSION 20241026 namespace lapack {