comparison configure.ac @ 25324:4c14c002cabe stable rc-4-3-92

bump version for third 4.4 release candidate * configure.ac (AC_INIT): Set version to 4.3.92. (OCTAVE_PATCH_VERSION): Now 92. (OCTAVE_RELEASE_DATE): Set to 2018-04-27.
author John W. Eaton <jwe@octave.org>
date Fri, 27 Apr 2018 10:05:34 -0400
parents 7d32780f4dea
children abc5095d58c2 cf84db75ab57
comparison
equal deleted inserted replaced
25319:56201aad3462 25324:4c14c002cabe
18 ### along with Octave; see the file COPYING. If not, see 18 ### along with Octave; see the file COPYING. If not, see
19 ### <https://www.gnu.org/licenses/>. 19 ### <https://www.gnu.org/licenses/>.
20 20
21 ### Initialize Autoconf 21 ### Initialize Autoconf
22 AC_PREREQ([2.65]) 22 AC_PREREQ([2.65])
23 AC_INIT([GNU Octave], [4.3.91], [https://octave.org/bugs.html], [octave], 23 AC_INIT([GNU Octave], [4.3.92], [https://octave.org/bugs.html], [octave],
24 [https://www.gnu.org/software/octave/]) 24 [https://www.gnu.org/software/octave/])
25 25
26 ### Declare version numbers 26 ### Declare version numbers
27 27
28 dnl Note that the version number is duplicated here and in AC_INIT because 28 dnl Note that the version number is duplicated here and in AC_INIT because
29 dnl AC_INIT requires it to be static, not computed from shell variables. 29 dnl AC_INIT requires it to be static, not computed from shell variables.
30 30
31 OCTAVE_MAJOR_VERSION=4 31 OCTAVE_MAJOR_VERSION=4
32 OCTAVE_MINOR_VERSION=3 32 OCTAVE_MINOR_VERSION=3
33 OCTAVE_PATCH_VERSION=91 33 OCTAVE_PATCH_VERSION=92
34 34
35 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument. 35 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument.
36 OCTAVE_VERSION="$PACKAGE_VERSION" 36 OCTAVE_VERSION="$PACKAGE_VERSION"
37 37
38 OCTAVE_COPYRIGHT="Copyright (C) 2018 John W. Eaton and others." 38 OCTAVE_COPYRIGHT="Copyright (C) 2018 John W. Eaton and others."
39 39
40 OCTAVE_RELEASE_DATE="2018-04-19" 40 OCTAVE_RELEASE_DATE="2018-04-27"
41 41
42 ## The "API version" is used as a way of checking that interfaces in the 42 ## The "API version" is used as a way of checking that interfaces in the
43 ## liboctave and libinterp libraries haven't changed in a backwardly 43 ## liboctave and libinterp libraries haven't changed in a backwardly
44 ## incompatible way when loading .oct files. A better way to do this is with 44 ## incompatible way when loading .oct files. A better way to do this is with
45 ## library versioning, but not all systems support it. 45 ## library versioning, but not all systems support it.