comparison configure.ac @ 25771:1f46d371968c stable release-4-4-1

Version 4.4.1 released * configure.ac (AC_INIT): Update version info for release. (OCTAVE_PATCH_VERSION): Set to 1. (OCTAVE_RELEASE_DATE): Set to 2018-08-09. * CITATION, org.octave.Octave.appdata.xml: Update version info. * libgui/module.mk (liboctgui_current): Now 4. * libinterp/module.mk (liboctinterp_current): Now 6. * liboctave/module.mk (liboctave_current): Now 6. We normally try to preserve backward compatibility of the API for minor releases, but it was not possible this time.
author John W. Eaton <jwe@octave.org>
date Thu, 09 Aug 2018 14:20:32 -0400
parents 439e69ae7aeb
children 5eeecebcd91a 144820478378
comparison
equal deleted inserted replaced
25767:d26ea52635d2 25771:1f46d371968c
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-rc2], [https://octave.org/bugs.html], [octave], 23 AC_INIT([GNU Octave], [4.4.1], [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-rc2 33 OCTAVE_PATCH_VERSION=1
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-30" 40 OCTAVE_RELEASE_DATE="2018-08-09"
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.