Skip to content

Commit 96ea435

Browse files
committed
Updating version on Version files
1 parent d6326d7 commit 96ea435

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ endif()
1111
project(LAPACK Fortran)
1212

1313
set(LAPACK_MAJOR_VERSION 3)
14-
set(LAPACK_MINOR_VERSION 6)
15-
set(LAPACK_PATCH_VERSION 1)
14+
set(LAPACK_MINOR_VERSION 7)
15+
set(LAPACK_PATCH_VERSION 0)
1616
set(
1717
LAPACK_VERSION
1818
${LAPACK_MAJOR_VERSION}.${LAPACK_MINOR_VERSION}.${LAPACK_PATCH_VERSION}

DOCS/Doxyfile

+1-1
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.6.0
41+
PROJECT_NUMBER = 3.7.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

+1-1
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.6.1
41+
PROJECT_NUMBER = 3.7.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

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141
*> \author Univ. of Colorado Denver
4242
*> \author NAG Ltd.
4343
*
44-
*> \date June 2016
44+
*> \date December 2016
4545
*
4646
*> \ingroup auxOTHERauxiliary
4747
*
4848
* =====================================================================
4949
SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
5050
*
51-
* -- LAPACK computational routine (version 3.6.0) --
51+
* -- LAPACK computational routine (version 3.7.0) --
5252
* -- LAPACK is a software package provided by Univ. of Tennessee, --
5353
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
5454
* June 2016
@@ -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 = 6
62-
VERS_PATCH = 1
61+
VERS_MINOR = 7
62+
VERS_PATCH = 0
6363
* =====================================================================
6464
*
6565
RETURN

README

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ VERSION 3.4.2 : September 2012
2323
VERSION 3.5.0 : November 2013
2424
VERSION 3.6.0 : November 2015
2525
VERSION 3.6.1 : June 2016
26+
VERSION 3.7.0 : December 2016
2627

2728

2829
LAPACK is a library of Fortran 90 with subroutines for solving

SRC/ilaver.f

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747
*> \author Univ. of Colorado Denver
4848
*> \author NAG Ltd.
4949
*
50-
*> \date June 2016
50+
*> \date December 2016
5151
*
5252
*> \ingroup OTHERauxiliary
5353
*
5454
* =====================================================================
5555
SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
5656
*
57-
* -- LAPACK computational routine (version 3.6.1) --
57+
* -- LAPACK computational routine (version 3.7.0) --
5858
* -- LAPACK is a software package provided by Univ. of Tennessee, --
5959
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
6060
* June 2016
@@ -64,8 +64,8 @@ SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
6464
INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
6565
* =====================================================================
6666
VERS_MAJOR = 3
67-
VERS_MINOR = 6
68-
VERS_PATCH = 1
67+
VERS_MINOR = 7
68+
VERS_PATCH = 0
6969
* =====================================================================
7070
*
7171
RETURN

make.inc.example

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####################################################################
22
# LAPACK make include file. #
3-
# LAPACK, Version 3.6.1 #
4-
# June 2016 #
3+
# LAPACK, Version 3.7.0 #
4+
# December 2016 #
55
####################################################################
66
#
77
SHELL = /bin/sh

0 commit comments

Comments
 (0)