comparison configure.ac @ 25289:ff59be58f028 stable rc-4-3-91

bump version for second 4.4 release candidate * configure.ac (AC_INIT): Set version to 4.3.91. (OCTAVE_PATCH_VERSION): Now 91. (OCTAVE_RELEASE_DATE): Set to 2018-04-19.
author John W. Eaton <jwe@octave.org>
date Thu, 19 Apr 2018 16:01:06 -0400
parents 7f6b4483468d
children affd44707573 faed660f7222
comparison
equal deleted inserted replaced
25287:f692728de113 25289:ff59be58f028
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.90], [https://octave.org/bugs.html], [octave], 23 AC_INIT([GNU Octave], [4.3.91], [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=90 33 OCTAVE_PATCH_VERSION=91
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-11" 40 OCTAVE_RELEASE_DATE="2018-04-19"
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.