Skip to content

Commit 5487665

Browse files
committed
Version 2020.10.00
1 parent 7806180 commit 5487665

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020.10.00
2+
- Fixes: CMake defines, version, ILP64; remove [cz]symv prototypes
3+
- Add `make check`
4+
15
2020.09.00
26
- Clean up namespace
37
- Makefile and CMake improvements

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cmake_minimum_required( VERSION 3.15 )
1212

1313
project(
1414
blaspp
15-
VERSION 2020.06.00
15+
VERSION 2020.10.00
1616
LANGUAGES CXX
1717
)
1818

GNUmakefile

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

230230
.PHONY: $(pkg)
231231
$(pkg):
232-
perl -pe 's:#VERSION:2020.09.00:; \
232+
perl -pe 's:#VERSION:2020.10.00:; \
233233
s:#PREFIX:${prefix}:; \
234234
s:#CXXFLAGS:${CXXFLAGS_clean}:; \
235235
s:#CPPFLAGS:${CPPFLAGS_clean}:; \

include/blas.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#define BLAS_HH
88

99
// Version is updated by make_release.py; DO NOT EDIT.
10-
// Version 2020.09.00
11-
#define BLASPP_VERSION 20200900
10+
// Version 2020.10.00
11+
#define BLASPP_VERSION 20201000
1212

1313
namespace blas {
1414

0 commit comments

Comments
 (0)