comparison configure.ac @ 29733:fc282fdd1a42 stable

bump version for 6.2.90 release candidate * configure.ac (AC_INIT): Set version to 6.2.90. (OCTAVE_PATCH_VERSION): Set to 90. (OCTAVE_RELEASE_DATE): Set to 2021-06-05. (OCTAVE_API_VERSION): Set to api-v56. * liboctave/module.mk, libgui/module.mk, libinterp/module.mk: Bump version numbers for library revision.
author John W. Eaton <jwe@octave.org>
date Sat, 05 Jun 2021 20:35:58 -0400
parents 99e3912441ec
children 9d70a797d54a
comparison
equal deleted inserted replaced
29730:a7935014edd1 29733:fc282fdd1a42
25 ## 25 ##
26 ######################################################################## 26 ########################################################################
27 27
28 ### Initialize Autoconf 28 ### Initialize Autoconf
29 AC_PREREQ([2.65]) 29 AC_PREREQ([2.65])
30 AC_INIT([GNU Octave], [6.2.1], [https://octave.org/bugs.html], [octave], 30 AC_INIT([GNU Octave], [6.2.90], [https://octave.org/bugs.html], [octave],
31 [https://www.gnu.org/software/octave/]) 31 [https://www.gnu.org/software/octave/])
32 32
33 ### Declare version numbers 33 ### Declare version numbers
34 34
35 dnl Note that the version number is duplicated here and in AC_INIT because 35 dnl Note that the version number is duplicated here and in AC_INIT because
39 ## explains how to update these numbers for release and development 39 ## explains how to update these numbers for release and development
40 ## versions. 40 ## versions.
41 41
42 OCTAVE_MAJOR_VERSION=6 42 OCTAVE_MAJOR_VERSION=6
43 OCTAVE_MINOR_VERSION=2 43 OCTAVE_MINOR_VERSION=2
44 OCTAVE_PATCH_VERSION=1 44 OCTAVE_PATCH_VERSION=90
45 45
46 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument. 46 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument.
47 OCTAVE_VERSION="$PACKAGE_VERSION" 47 OCTAVE_VERSION="$PACKAGE_VERSION"
48 48
49 OCTAVE_COPYRIGHT="Copyright (C) 2021 The Octave Project Developers." 49 OCTAVE_COPYRIGHT="Copyright (C) 2021 The Octave Project Developers."
50 50
51 OCTAVE_RELEASE_DATE="2021-02-19" 51 OCTAVE_RELEASE_DATE="2021-06-05"
52 52
53 ## The "API version" is used as a way of checking that interfaces in the 53 ## The "API version" is used as a way of checking that interfaces in the
54 ## liboctave and libinterp libraries haven't changed in a backwardly 54 ## liboctave and libinterp libraries haven't changed in a backwardly
55 ## incompatible way when loading .oct files. A better way to do this is with 55 ## incompatible way when loading .oct files. A better way to do this is with
56 ## library versioning, but not all systems support it. 56 ## library versioning, but not all systems support it.
61 ## macros instead. 61 ## macros instead.
62 dnl 62 dnl
63 dnl FIXME: Since we also set libtool versions for liboctave and libinterp, 63 dnl FIXME: Since we also set libtool versions for liboctave and libinterp,
64 dnl perhaps we should be computing the "api version" from those versions numbers 64 dnl perhaps we should be computing the "api version" from those versions numbers
65 dnl in some way instead of setting it independently here. 65 dnl in some way instead of setting it independently here.
66 OCTAVE_API_VERSION="api-v55" 66 OCTAVE_API_VERSION="api-v56"
67 67
68 AC_SUBST(OCTAVE_MAJOR_VERSION) 68 AC_SUBST(OCTAVE_MAJOR_VERSION)
69 AC_SUBST(OCTAVE_MINOR_VERSION) 69 AC_SUBST(OCTAVE_MINOR_VERSION)
70 AC_SUBST(OCTAVE_PATCH_VERSION) 70 AC_SUBST(OCTAVE_PATCH_VERSION)
71 AC_SUBST(OCTAVE_VERSION) 71 AC_SUBST(OCTAVE_VERSION)