comparison configure.ac @ 30270:8d7671609955 stable release-6-4-0

Version 6.4.0 released. * configure.ac (AC_INIT): Set version to 6.4.0. (OCTAVE_MINOR_VERSION): Now 4. (OCTAVE_PATCH_VERSION): Now 0. (OCTAVE_RELEASE_DATE): Set to "2021-10-30". * etc/icons/org.octave.Octave.appdata.xml: Add release info for version 6.4.0. * CITATION: Update for 6.4.0. * NEWS: Update release date.
author John W. Eaton <jwe@octave.org>
date Sat, 30 Oct 2021 10:20:24 -0400
parents aaac4d16af9e
children 869dea2b5c91
comparison
equal deleted inserted replaced
30255:689c323540b0 30270:8d7671609955
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.3.91], [https://octave.org/bugs.html], [octave], 30 AC_INIT([GNU Octave], [6.4.0], [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
38 ## The description of the Octave version number in the etc/HACKING.md 38 ## The description of the Octave version number in the etc/HACKING.md
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=3 43 OCTAVE_MINOR_VERSION=4
44 OCTAVE_PATCH_VERSION=91 44 OCTAVE_PATCH_VERSION=0
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-10-19" 51 OCTAVE_RELEASE_DATE="2021-10-30"
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.