Skip to content

Commit c766b14

Browse files
committed
Releasing version numbering in Cmake for minor clSPARSE release: v0.8.0.1
Minor Fix in test-blas3 Matrix market reader functions are modified to read explicit zeros from matrix market files by default. Also an option is provided to skip reading these zeros. Correspondingly all related functions which eventually call matrix market reader are changed.
1 parent 8140609 commit c766b14

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ endif()
3838
if( POLICY CMP0048 )
3939
cmake_policy( SET CMP0048 NEW )
4040

41-
project( SuperBuild.clSPARSE VERSION 0.9.0.0 )
41+
project( SuperBuild.clSPARSE VERSION 0.8.1.0 )
4242
else( )
4343
project( SuperBuild.clSPARSE )
4444

@@ -48,11 +48,11 @@ else( )
4848
endif( )
4949

5050
if( NOT DEFINED SuperBuild.clSPARSE_VERSION_MINOR )
51-
set( SuperBuild.clSPARSE_VERSION_MINOR 9 )
51+
set( SuperBuild.clSPARSE_VERSION_MINOR 8 )
5252
endif( )
5353

5454
if( NOT DEFINED SuperBuild.clSPARSE_VERSION_PATCH )
55-
set( SuperBuild.clSPARSE_VERSION_PATCH 0 )
55+
set( SuperBuild.clSPARSE_VERSION_PATCH 1 )
5656
endif( )
5757

5858
if( NOT DEFINED SuperBuild.clSPARSE_VERSION_TWEAK )

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ endif()
3737
# clSPARSE becomes the name of the project with a particular version
3838
if( POLICY CMP0048 )
3939
cmake_policy( SET CMP0048 NEW )
40-
project( clSPARSE VERSION 0.9.0.0 LANGUAGES C CXX )
40+
project( clSPARSE VERSION 0.8.1.0 LANGUAGES C CXX )
4141
else( )
4242
project( clSPARSE C CXX )
4343
# Define a version for the code
@@ -46,11 +46,11 @@ else( )
4646
endif( )
4747

4848
if( NOT DEFINED clSPARSE_VERSION_MINOR )
49-
set( clSPARSE_VERSION_MINOR 9 )
49+
set( clSPARSE_VERSION_MINOR 8 )
5050
endif( )
5151

5252
if( NOT DEFINED clSPARSE_VERSION_PATCH )
53-
set( clSPARSE_VERSION_PATCH 0 )
53+
set( clSPARSE_VERSION_PATCH 1 )
5454
endif( )
5555

5656
if( NOT DEFINED clSPARSE_VERSION_TWEAK )

0 commit comments

Comments
 (0)