diff --git a/CHANGELOG.md b/CHANGELOG.md index f7eb173d..7fb9851c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +2023.11.05 + - Add heevd GPU wrapper for CUDA, ROCm, oneMKL + - Update Fortran strlen handling + - Fix CMake library ordering + 2023.08.25 - Use yyyy.mm.dd version scheme, instead of yyyy.mm.release - Added oneAPI support to CMake diff --git a/CMakeLists.txt b/CMakeLists.txt index 1dd17761..96575c7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 ) project( lapackpp - VERSION 2023.08.25 + VERSION 2023.11.05 LANGUAGES CXX ) diff --git a/GNUmakefile b/GNUmakefile index de65aad5..1b66f6fd 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -273,7 +273,7 @@ LDFLAGS_clean = $(filter-out -fPIC, $(LDFLAGS)) .PHONY: $(pkg) $(pkg): - perl -pe "s'#VERSION'2023.08.25'; \ + perl -pe "s'#VERSION'2023.11.05'; \ s'#PREFIX'${prefix}'; \ s'#CXX\b'${CXX}'; \ s'#CXXFLAGS'${CXXFLAGS_clean}'; \ diff --git a/docs/doxygen/doxyfile.conf b/docs/doxygen/doxyfile.conf index 5c80ecdd..e4ac1909 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 = "2023.08.25" +PROJECT_NUMBER = "2023.11.05" # 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 3a560131..c8bfb0a6 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 2023.08.25 -#define LAPACKPP_VERSION 20230825 +// Version 2023.11.05 +#define LAPACKPP_VERSION 20231105 namespace lapack { diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 5e7b6c5c..6261d765 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -22,7 +22,7 @@ if (NOT TARGET testsweeper) message( " Found TestSweeper library: ${testsweeper_DIR}" ) else() set( url "https://github.com/icl-utk-edu/testsweeper" ) - set( tag "v2023.08.25" ) + set( tag "v2023.11.05" ) message( "" ) message( "---------- TestSweeper" ) message( STATUS "Fetching TestSweeper ${tag} from ${url}" )