Skip to content

Commit 3c47832

Browse files
committed
Version 2023.11.05
1 parent e4579ec commit 3c47832

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2023.11.05
2+
- Fix Queue workspace
3+
- Update Fortran strlen handling
4+
- Fix CMake unity build
5+
- Fix CMake library ordering
6+
17
2023.08.25
28
- Use yyyy.mm.dd version scheme, instead of yyyy.mm.release
39
- Added oneAPI support to CMake

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 )
1515

1616
project(
1717
blaspp
18-
VERSION 2023.08.25
18+
VERSION 2023.11.05
1919
LANGUAGES CXX
2020
)
2121

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ LDFLAGS_clean = $(filter-out -fPIC, $(LDFLAGS))
235235

236236
.PHONY: $(pkg)
237237
$(pkg):
238-
perl -pe "s'#VERSION'2023.08.25'; \
238+
perl -pe "s'#VERSION'2023.11.05'; \
239239
s'#PREFIX'${abs_prefix}'; \
240240
s'#CXX\b'${CXX}'; \
241241
s'#CXXFLAGS'${CXXFLAGS_clean}'; \

docs/doxygen/doxyfile.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PROJECT_NAME = "BLAS++"
4040
# could be handy for archiving the generated documentation or if some version
4141
# control system is used.
4242

43-
PROJECT_NUMBER = "2023.08.25"
43+
PROJECT_NUMBER = "2023.11.05"
4444

4545
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4646
# for a project that appears at the top of each page and should give viewer a

include/blas.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#include "blas/defines.h"
1010

1111
// Version is updated by make_release.py; DO NOT EDIT.
12-
// Version 2023.08.25
13-
#define BLASPP_VERSION 20230825
12+
// Version 2023.11.05
13+
#define BLASPP_VERSION 20231105
1414

1515
namespace blas {
1616

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (NOT TARGET testsweeper)
2323
message( "" )
2424
else()
2525
set( url "https://github.com/icl-utk-edu/testsweeper" )
26-
set( tag "v2023.08.25" )
26+
set( tag "v2023.11.05" )
2727
message( "" )
2828
message( "---------- TestSweeper" )
2929
message( STATUS "Fetching TestSweeper ${tag} from ${url}" )

0 commit comments

Comments
 (0)