From b3eecd3eaac3a1332d0d2c5fc052d1af114df192 Mon Sep 17 00:00:00 2001 From: Sherry Li Date: Fri, 17 Nov 2023 19:15:54 -0800 Subject: [PATCH] update version string to 8.2.1 --- CMakeLists.txt | 4 ++-- README.md | 8 +++++--- SRC/superlu_defs.h | 7 ++++--- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 723932b9..6ce97bfb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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") diff --git a/README.md b/README.md index 2553989a..e1ed1504 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# SuperLU_DIST (version 8.1.1) superlu +# SuperLU_DIST (version 8.2.1) superlu [![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) @@ -24,7 +24,7 @@ acceleration capabilities. Table of Contents ================= -* [SuperLU_DIST (version 8.1.1) superlu](#superlu_dist-version-81---) +* [SuperLU_DIST (version 8.2.1) superlu](#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) @@ -49,7 +49,7 @@ Table of Contents Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) -# SuperLU_DIST (version 8.1) superlu +# SuperLU_DIST (version 8.2) superlu [![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) @@ -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 ``` diff --git a/SRC/superlu_defs.h b/SRC/superlu_defs.h index aad12430..db1d4c40 100644 --- a/SRC/superlu_defs.h +++ b/SRC/superlu_defs.h @@ -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 * */ @@ -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"