From 22bbaba951dbf607aca14672d1ca74a2ce357ed2 Mon Sep 17 00:00:00 2001 From: Mark Gates Date: Wed, 28 Oct 2020 08:51:42 -0400 Subject: [PATCH] Version 2020.10.02 --- CHANGELOG.md | 3 +++ CMakeLists.txt | 2 +- GNUmakefile | 2 +- include/blas.hh | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0618ae16..2f7a9d93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index ca37f894..aa7bbb2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required( VERSION 3.15 ) project( blaspp - VERSION 2020.10.01 + VERSION 2020.10.02 LANGUAGES CXX ) diff --git a/GNUmakefile b/GNUmakefile index 883c05df..90e0fee9 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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}:; \ diff --git a/include/blas.hh b/include/blas.hh index be76699e..f7e34086 100644 --- a/include/blas.hh +++ b/include/blas.hh @@ -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 {