Skip to content

Commit

Permalink
update version string to 8.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyeli committed Nov 18, 2023
1 parent 3fe6856 commit b3eecd3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ cmake_minimum_required(VERSION 3.18.1 FATAL_ERROR)
#project(SuperLU_DIST C CXX CUDA)
project(SuperLU_DIST C CXX)
set(VERSION_MAJOR "8")
set(VERSION_MINOR "1")
set(VERSION_BugFix "2")
set(VERSION_MINOR "2")
set(VERSION_BugFix "1")
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BugFix})

list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SuperLU_DIST (version 8.1.1) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">
# SuperLU_DIST (version 8.2.1) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">

[![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 All @@ -24,7 +24,7 @@ acceleration capabilities.
Table of Contents
=================

* [SuperLU_DIST (version 8.1.1) <a href="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" target="_blank" rel="nofollow"><img align="center" width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" style="max-width:100%;"></a>](#superlu_dist-version-81---)
* [SuperLU_DIST (version 8.2.1) <a href="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" target="_blank" rel="nofollow"><img align="center" width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png" style="max-width:100%;"></a>](#superlu_dist-version-81---)
* [Directory structure of the source code](#directory-structure-of-the-source-code)
* [Installation](#installation)
* [Installation option 1: Using CMake build system.](#installation-option-1-using-cmake-build-system)
Expand All @@ -49,7 +49,7 @@ Table of Contents

Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)

# SuperLU_DIST (version 8.1) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">
# SuperLU_DIST (version 8.2) <img align=center width="55" alt="superlu" src="https://user-images.githubusercontent.com/11741943/103982988-5a9a9d00-5139-11eb-9ac4-a55e80a79f8d.png">

[![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 @@ -541,4 +541,6 @@ December 12, 2021 Version 7.2.0
May 22, 2022 Version 8.0.0
July 5, 2022 Version 8.1.0
October 1, 2022 Version 8.1.1
Novembe 9, 2023 Version 8.2.0
Novembe 17, 2023 Version 8.2.1
```
7 changes: 4 additions & 3 deletions SRC/superlu_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ at the top-level directory.
* July 5, 2022 version 8.1.0
* October 1, 2022 version 8.1.1
* November 12, 2022 version 8.1.2
* November 17, 2023 version 8.2.1
* </pre>
*/

Expand Down Expand Up @@ -83,9 +84,9 @@ at the top-level directory.
* Versions 4.x and earlier do not include a #define'd version numbers.
*/
#define SUPERLU_DIST_MAJOR_VERSION 8
#define SUPERLU_DIST_MINOR_VERSION 1
#define SUPERLU_DIST_PATCH_VERSION 2
#define SUPERLU_DIST_RELEASE_DATE "November 12, 2022"
#define SUPERLU_DIST_MINOR_VERSION 2
#define SUPERLU_DIST_PATCH_VERSION 1
#define SUPERLU_DIST_RELEASE_DATE "November 17, 2023"

#include "superlu_dist_config.h"

Expand Down

0 comments on commit b3eecd3

Please sign in to comment.