comparison configure.ac @ 26620:82865ccb62c2 stable rc-5-0-90

bump version for first 5.1 release candidate * configure.ac (AC_INIT): Set version to 5.0.90. (OCTAVE_PATCH_VERSION): Now 90. (OCTAVE_RELEASE_DATE): Set to 2019-01-24.
author John W. Eaton <jwe@octave.org>
date Thu, 24 Jan 2019 19:22:18 +0000
parents ea790252d837
children 7bb23cecb928 af47f245a2ad
comparison
equal deleted inserted replaced
26618:361f7ce80f85 26620:82865ccb62c2
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.1], [https://octave.org/bugs.html], [octave], 23 AC_INIT([GNU Octave], [5.0.90], [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=1 37 OCTAVE_PATCH_VERSION=90
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) 2018-2019 John W. Eaton and others." 42 OCTAVE_COPYRIGHT="Copyright (C) 2019 John W. Eaton and others."
43 43
44 OCTAVE_RELEASE_DATE="2018-12-20" 44 OCTAVE_RELEASE_DATE="2019-01-24"
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.