comparison configure.ac @ 26674:af47f245a2ad stable rc-5-0-91

bump version for first 5.1 release candidate * configure.ac (AC_INIT): Set version to 5.0.91. (OCTAVE_PATCH_VERSION): Now 91. (OCTAVE_RELEASE_DATE): Set to 2019-02-04.
author John W. Eaton <jwe@octave.org>
date Mon, 04 Feb 2019 17:49:53 +0000
parents 82865ccb62c2
children adc31fed37f5 d05d6eebde10
comparison
equal deleted inserted replaced
26672:df42ea23502f 26674:af47f245a2ad
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], [5.0.90], [https://octave.org/bugs.html], [octave], 23 AC_INIT([GNU Octave], [5.0.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
32 ## explains how to update these numbers for release and development 32 ## explains how to update these numbers for release and development
33 ## versions. 33 ## versions.
34 34
35 OCTAVE_MAJOR_VERSION=5 35 OCTAVE_MAJOR_VERSION=5
36 OCTAVE_MINOR_VERSION=0 36 OCTAVE_MINOR_VERSION=0
37 OCTAVE_PATCH_VERSION=90 37 OCTAVE_PATCH_VERSION=91
38 38
39 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument. 39 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument.
40 OCTAVE_VERSION="$PACKAGE_VERSION" 40 OCTAVE_VERSION="$PACKAGE_VERSION"
41 41
42 OCTAVE_COPYRIGHT="Copyright (C) 2019 John W. Eaton and others." 42 OCTAVE_COPYRIGHT="Copyright (C) 2019 John W. Eaton and others."
43 43
44 OCTAVE_RELEASE_DATE="2019-01-24" 44 OCTAVE_RELEASE_DATE="2019-02-04"
45 45
46 ## The "API version" is used as a way of checking that interfaces in the 46 ## The "API version" is used as a way of checking that interfaces in the
47 ## liboctave and libinterp libraries haven't changed in a backwardly 47 ## liboctave and libinterp libraries haven't changed in a backwardly
48 ## incompatible way when loading .oct files. A better way to do this is with 48 ## incompatible way when loading .oct files. A better way to do this is with
49 ## library versioning, but not all systems support it. 49 ## library versioning, but not all systems support it.