Skip to content

Commit

Permalink
Version 2020.10.02
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Oct 28, 2020
1 parent bd914c3 commit 22bbaba
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020.10.02
- CMake support for including as subdirectory

2020.10.01
- Fixes: CMake always checks for CBLAS, in case LAPACK++ needs it

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cmake_minimum_required( VERSION 3.15 )

project(
blaspp
VERSION 2020.10.01
VERSION 2020.10.02
LANGUAGES CXX
)

Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ LDFLAGS_clean = $(filter-out -fPIC, $(LDFLAGS))

.PHONY: $(pkg)
$(pkg):
perl -pe 's:#VERSION:2020.10.01:; \
perl -pe 's:#VERSION:2020.10.02:; \
s:#PREFIX:${prefix}:; \
s:#CXXFLAGS:${CXXFLAGS_clean}:; \
s:#CPPFLAGS:${CPPFLAGS_clean}:; \
Expand Down
4 changes: 2 additions & 2 deletions include/blas.hh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#define BLAS_HH

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2020.10.01
#define BLASPP_VERSION 20201001
// Version 2020.10.02
#define BLASPP_VERSION 20201002

namespace blas {

Expand Down

0 comments on commit 22bbaba

Please sign in to comment.