comparison configure.ac @ 25710:439e69ae7aeb stable

bump version for 4.4.1-rc2 * configure.ac: Set version to 4.4.1-rc2 and release date to 2018-07-30.
author John W. Eaton <jwe@octave.org>
date Mon, 30 Jul 2018 15:42:48 -0400
parents 19eba00c0c7d
children 5b1e7256a8de 1f46d371968c
comparison
equal deleted inserted replaced
25704:96584a825b0f 25710:439e69ae7aeb
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.4.1-rc1], [https://octave.org/bugs.html], [octave], 23 AC_INIT([GNU Octave], [4.4.1-rc2], [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=4 32 OCTAVE_MINOR_VERSION=4
33 OCTAVE_PATCH_VERSION=1-rc1 33 OCTAVE_PATCH_VERSION=1-rc2
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-07-13" 40 OCTAVE_RELEASE_DATE="2018-07-30"
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.