From 3c47832f5162b5215b2164c21c4132544c65563d Mon Sep 17 00:00:00 2001 From: Mark Gates Date: Mon, 6 Nov 2023 15:25:17 -0500 Subject: [PATCH] Version 2023.11.05 --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- GNUmakefile | 2 +- docs/doxygen/doxyfile.conf | 2 +- include/blas.hh | 4 ++-- test/CMakeLists.txt | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9731a541..2e62da48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2023.11.05 + - Fix Queue workspace + - Update Fortran strlen handling + - Fix CMake unity build + - 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 04e66e2d..c6ecaf3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 ) project( blaspp - VERSION 2023.08.25 + VERSION 2023.11.05 LANGUAGES CXX ) diff --git a/GNUmakefile b/GNUmakefile index fa1cbbc3..8a12fdd7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -235,7 +235,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'${abs_prefix}'; \ s'#CXX\b'${CXX}'; \ s'#CXXFLAGS'${CXXFLAGS_clean}'; \ diff --git a/docs/doxygen/doxyfile.conf b/docs/doxygen/doxyfile.conf index c720e460..f78b5547 100644 --- a/docs/doxygen/doxyfile.conf +++ b/docs/doxygen/doxyfile.conf @@ -40,7 +40,7 @@ PROJECT_NAME = "BLAS++" # 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/blas.hh b/include/blas.hh index f269770f..c34a6cd5 100644 --- a/include/blas.hh +++ b/include/blas.hh @@ -9,8 +9,8 @@ #include "blas/defines.h" // Version is updated by make_release.py; DO NOT EDIT. -// Version 2023.08.25 -#define BLASPP_VERSION 20230825 +// Version 2023.11.05 +#define BLASPP_VERSION 20231105 namespace blas { diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 0b440f69..6c96fce8 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -23,7 +23,7 @@ if (NOT TARGET testsweeper) message( "" ) 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}" )