Skip to content

Commit 7866626

Browse files
authored
Merge pull request #751 from weslleyspereira/lapack-3.11-preparation
Preparing LAPACK 3.11
2 parents e725304 + 57f15d8 commit 7866626

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.2)
33
project(LAPACK Fortran C)
44

55
set(LAPACK_MAJOR_VERSION 3)
6-
set(LAPACK_MINOR_VERSION 10)
7-
set(LAPACK_PATCH_VERSION 1)
6+
set(LAPACK_MINOR_VERSION 11)
7+
set(LAPACK_PATCH_VERSION 0)
88
set(
99
LAPACK_VERSION
1010
${LAPACK_MAJOR_VERSION}.${LAPACK_MINOR_VERSION}.${LAPACK_PATCH_VERSION}

DOCS/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = LAPACK
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.10.1
41+
PROJECT_NUMBER = 3.11.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

DOCS/Doxyfile_man

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = LAPACK
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.10.1
41+
PROJECT_NUMBER = 3.11.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

INSTALL/ilaver.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
5858
INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
5959
* =====================================================================
6060
VERS_MAJOR = 3
61-
VERS_MINOR = 10
62-
VERS_PATCH = 1
61+
VERS_MINOR = 11
62+
VERS_PATCH = 0
6363
* =====================================================================
6464
*
6565
RETURN

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
* VERSION 3.9.1 : April 2021
3737
* VERSION 3.10.0 : June 2021
3838
* VERSION 3.10.1 : April 2022
39+
* VERSION 3.11.0 : November 2022
3940

4041
LAPACK is a library of Fortran subroutines for solving the most commonly
4142
occurring problems in numerical linear algebra.

0 commit comments

Comments
 (0)