comparison configure.ac @ 20269:3ccc2d02e64b stable release-4-0-0

Version 4.0.0 released. * configure.ac (OCTAVE_VERSION): Now 4.0.0. (OCTAVE_MAJOR_VERSION): Now 4. (OCTAVE_MINOR_VERSION): Now 0. (OCTAVE_PATCH_VERSION): Now 0. (OCTAVE_RELEASE_DATE): Set to 2015-05-23.
author John W. Eaton <jwe@octave.org>
date Sat, 23 May 2015 10:35:40 -0400
parents 3b3579ad7e46
children 3e8c188b20a7
comparison
equal deleted inserted replaced
20257:8a25649b9c77 20269:3ccc2d02e64b
17 ### You should have received a copy of the GNU General Public License 17 ### You should have received a copy of the GNU General Public License
18 ### along with Octave; see the file COPYING. If not, see 18 ### along with Octave; see the file COPYING. If not, see
19 ### <http://www.gnu.org/licenses/>. 19 ### <http://www.gnu.org/licenses/>.
20 20
21 AC_PREREQ([2.63]) 21 AC_PREREQ([2.63])
22 AC_INIT([GNU Octave], [4.0.0-rc4], [http://octave.org/bugs.html], [octave]) 22 AC_INIT([GNU Octave], [4.0.0], [http://octave.org/bugs.html], [octave])
23 23
24 dnl Note that the version number is duplicated here and in AC_INIT 24 dnl Note that the version number is duplicated here and in AC_INIT
25 dnl because AC_INIT requires it to be static, not computed from 25 dnl because AC_INIT requires it to be static, not computed from
26 dnl shell variables. 26 dnl shell variables.
27 OCTAVE_MAJOR_VERSION=4 27 OCTAVE_MAJOR_VERSION=4
28 OCTAVE_MINOR_VERSION=0 28 OCTAVE_MINOR_VERSION=0
29 OCTAVE_PATCH_VERSION=0-rc4 29 OCTAVE_PATCH_VERSION=0
30 30
31 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg 31 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg
32 OCTAVE_VERSION="$PACKAGE_VERSION" 32 OCTAVE_VERSION="$PACKAGE_VERSION"
33 33
34 OCTAVE_COPYRIGHT="Copyright (C) 2015 John W. Eaton and others." 34 OCTAVE_COPYRIGHT="Copyright (C) 2015 John W. Eaton and others."
35 35
36 OCTAVE_RELEASE_DATE="2015-03-20" 36 OCTAVE_RELEASE_DATE="2015-05-26"
37 37
38 ## The "API version" is used as a way of checking that interfaces in the 38 ## The "API version" is used as a way of checking that interfaces in the
39 ## liboctave and libinterp libraries haven't changed in a backwardly 39 ## liboctave and libinterp libraries haven't changed in a backwardly
40 ## incompatible way when loading .oct files. A better way to do that is 40 ## incompatible way when loading .oct files. A better way to do that is
41 ## with library versioning, but not all systems support that. 41 ## with library versioning, but not all systems support that.