Skip to content

Commit

Permalink
Update version number to 6.2.0 in relevant files.
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyeli committed Nov 12, 2019
1 parent a9cb578 commit 7fcc559
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
# Project version numbers
project(SuperLU_DIST C CXX)
set(VERSION_MAJOR "6")
set(VERSION_MINOR "1")
set(VERSION_BugFix "1")
set(VERSION_MINOR "2")
set(VERSION_BugFix "0")
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BugFix})

list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SuperLU_DIST (version 6.1)
# SuperLU_DIST (version 6.2)

[![Build Status](https://travis-ci.org/xiaoyeli/superlu_dist.svg?branch=master)](https://travis-ci.org/xiaoyeli/superlu_dist)
[Nightly tests](http://my.cdash.org/index.php?project=superlu_dist)
Expand Down Expand Up @@ -254,7 +254,7 @@ You can disable CombBLAS with the following line in SRC/superlu_dist_config.h:
```


#### 1.4. C preprocessor definition CDEFS.
#### 1.4. C preprocessor definition CDEFS. (Replaced by cmake module FortranCInterface.)

In the header file SRC/Cnames.h, we use macros to determine how
C routines should be named so that they are callable by Fortran.
Expand Down
6 changes: 2 additions & 4 deletions SRC/superlu_FCnames.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ at the top-level directory.
* \brief Macro definitions
*
* <pre>
* -- Distributed SuperLU routine (version 1.0) --
* -- Distributed SuperLU routine (version 6.2) --
* Lawrence Berkeley National Lab, Univ. of California Berkeley.
* September 1, 1999
* Last modified:
* November 11, 2019
* November 12, 2019
*
* </pre>
*/
Expand Down
11 changes: 6 additions & 5 deletions SRC/superlu_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ at the top-level directory.
* \brief Definitions which are precision-neutral
*
* <pre>
* -- Distributed SuperLU routine (version 6.1) --
* -- Distributed SuperLU routine (version 6.2) --
* Lawrence Berkeley National Lab, Univ. of California Berkeley.
* November 1, 2007
*
* Modified:
* February 20, 2008
* October 11, 2014
* September 18, 2018 version 6.0
* February 8, 2019
* February 8, 2019 version 6.1.1
* November 12, 2019 version 6.2.0
* </pre>
*/

Expand Down Expand Up @@ -70,9 +71,9 @@ at the top-level directory.
* Versions 4.x and earlier do not include a #define'd version numbers.
*/
#define SUPERLU_DIST_MAJOR_VERSION 6
#define SUPERLU_DIST_MINOR_VERSION 1
#define SUPERLU_DIST_PATCH_VERSION 1
#define SUPERLU_DIST_RELEASE_DATE "February 8, 2019"
#define SUPERLU_DIST_MINOR_VERSION 2
#define SUPERLU_DIST_PATCH_VERSION 0
#define SUPERLU_DIST_RELEASE_DATE "November 12, 2019"

#include "superlu_dist_config.h"
/* Define my integer size int_t */
Expand Down

0 comments on commit 7fcc559

Please sign in to comment.