diff --git a/.appveyor.yml b/.appveyor.yml index 2928f060..30f4db53 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -55,8 +55,8 @@ build_script: after_build: - ps: pushd $env:CLBLAST_BUILD - - 7z a CLBlast-1.6.1-Windows-x64.zip .\install_dir\* - - ps: mv CLBlast-1.6.1-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER + - 7z a CLBlast-1.6.2-Windows-x64.zip .\install_dir\* + - ps: mv CLBlast-1.6.2-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER artifacts: - path: '*.zip' diff --git a/CHANGELOG b/CHANGELOG index 7e514ae6..13041b07 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,7 @@ Development version (next version) +- (no changes yet since last release) + +Version 1.6.2 - Fix a bug in the pre-processor that would cause issues on Arm GPUs - Fix DLL install directory in mingw - Modifications to the Python bindings (pyclblast) diff --git a/CMakeLists.txt b/CMakeLists.txt index 98cb2256..3cacc545 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ endif() project("clblast" C CXX) set(clblast_VERSION_MAJOR 1) set(clblast_VERSION_MINOR 6) -set(clblast_VERSION_PATCH 1) +set(clblast_VERSION_PATCH 2) set(clblast_VERSION "${clblast_VERSION_MAJOR}.${clblast_VERSION_MINOR}.${clblast_VERSION_PATCH}") set(clblast_SOVERSION ${clblast_VERSION_MAJOR}) diff --git a/include/clblast.h b/include/clblast.h index 44222b42..0d3b9d9f 100644 --- a/include/clblast.h +++ b/include/clblast.h @@ -39,10 +39,10 @@ #define PUBLIC_API #endif -// Version numbering (v1.6.1) +// Version numbering (v1.6.2) #define CLBLAST_VERSION_MAJOR 1 #define CLBLAST_VERSION_MINOR 6 -#define CLBLAST_VERSION_PATCH 1 +#define CLBLAST_VERSION_PATCH 2 namespace clblast { // ================================================================================================= diff --git a/include/clblast_c.h b/include/clblast_c.h index 89c3bc85..bba606f3 100644 --- a/include/clblast_c.h +++ b/include/clblast_c.h @@ -34,10 +34,10 @@ #define PUBLIC_API #endif -// Version numbering (v1.6.1) +// Version numbering (v1.6.2) #define CLBLAST_VERSION_MAJOR 1 #define CLBLAST_VERSION_MINOR 6 -#define CLBLAST_VERSION_PATCH 1 +#define CLBLAST_VERSION_PATCH 2 // The C interface #ifdef __cplusplus