comparison configure.ac @ 22455:b8eeca55fa81 rc-4-2-0-1

maint: Bump version number for 4.2.0-rc1. * configure.ac: Bump version to 4.2.0-rc1. * libgui/module.mk: Bump library version for 4.2.0 release. * libinterp/module.mk: Bump library version for 4.2.0 release. * liboctave/module.mk: Bump library version for 4.2.0 release.
author John W. Eaton <jwe@octave.org>
date Wed, 07 Sep 2016 20:46:38 -0400
parents 1442ae783e1f
children 30002d6568c4
comparison
equal deleted inserted replaced
22446:ec9dca76189c 22455:b8eeca55fa81
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.1.0+], [http://octave.org/bugs.html], [octave]) 22 AC_INIT([GNU Octave], [4.2.0-rc1], [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=1 28 OCTAVE_MINOR_VERSION=2
29 OCTAVE_PATCH_VERSION=0+ 29 OCTAVE_PATCH_VERSION=0-rc1
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) 2016 John W. Eaton and others." 34 OCTAVE_COPYRIGHT="Copyright (C) 2016 John W. Eaton and others."
35 35
36 OCTAVE_RELEASE_DATE="2015-05-26" 36 OCTAVE_RELEASE_DATE="2016-09-07"
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.
45 ## OCTAVE_PATCH_VERSION macros instead. 45 ## OCTAVE_PATCH_VERSION macros instead.
46 ## FIXME: Since we also set libtool versions for liboctave and 46 ## FIXME: Since we also set libtool versions for liboctave and
47 ## libinterp, perhaps we should be computing the "api version" from 47 ## libinterp, perhaps we should be computing the "api version" from
48 ## those versions numbers in some way instead of setting it 48 ## those versions numbers in some way instead of setting it
49 ## independently here. 49 ## independently here.
50 OCTAVE_API_VERSION="api-v50+" 50 OCTAVE_API_VERSION="api-v51"
51 51
52 AC_SUBST(OCTAVE_MAJOR_VERSION) 52 AC_SUBST(OCTAVE_MAJOR_VERSION)
53 AC_SUBST(OCTAVE_MINOR_VERSION) 53 AC_SUBST(OCTAVE_MINOR_VERSION)
54 AC_SUBST(OCTAVE_PATCH_VERSION) 54 AC_SUBST(OCTAVE_PATCH_VERSION)
55 AC_SUBST(OCTAVE_VERSION) 55 AC_SUBST(OCTAVE_VERSION)