changeset 28654:844b3b9bab7a stable rc-6-0-90

bump version for first 6.1 release candidate * configure.ac (AC_INIT): Set version to 6.0.90. (OCTAVE_PATCH_VERSION): Now 90. (OCTAVE_RELEASE_DATE): Set to 2020-08-26. * CITATION: Update. * NEWS: Update.
author John W. Eaton <jwe@octave.org>
date Wed, 26 Aug 2020 14:55:10 -0400
parents bb0ca2753bc2
children b12fd6ee728f
files CITATION NEWS configure.ac
diffstat 3 files changed, 11 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/CITATION	Wed Aug 26 13:27:48 2020 -0400
+++ b/CITATION	Wed Aug 26 14:55:10 2020 -0400
@@ -1,17 +1,17 @@
 To cite GNU Octave in publications use:
 
-  John W. Eaton, David Bateman, Søren Hauberg, Rik Wehbring (2019).
-  GNU Octave version 5.2.0 manual: a high-level interactive language for
+  John W. Eaton, David Bateman, Søren Hauberg, Rik Wehbring (2020).
+  GNU Octave version 6.1.0 manual: a high-level interactive language for
   numerical computations.
-  URL https://www.gnu.org/software/octave/doc/v5.2.0/
+  URL https://www.gnu.org/software/octave/doc/v6.1.0/
 
 A BibTeX entry for LaTeX users is:
 
   @manual{,
-    title     = {{GNU Octave} version 5.2.0 manual: a high-level interactive language for numerical computations},
+    title     = {{GNU Octave} version 6.1.0 manual: a high-level interactive language for numerical computations},
     author    = {John W. Eaton and David Bateman and S{\o}ren Hauberg and Rik Wehbring},
     year      = {2020},
-    url       = {https://www.gnu.org/software/octave/doc/v5.2.0/},
+    url       = {https://www.gnu.org/software/octave/doc/v6.1.0/},
   }
 
 We have invested a lot of time and effort in creating GNU Octave, please
--- a/NEWS	Wed Aug 26 13:27:48 2020 -0400
+++ b/NEWS	Wed Aug 26 14:55:10 2020 -0400
@@ -1,5 +1,5 @@
-Summary of important user-visible changes for version 6 (yyyy-mm-dd):
-----------------------------------------------------------------------
+Summary of important user-visible changes for version 6.1.0 (2020-08-26):
+------------------------------------------------------------------------
 
 ### General improvements
 
--- a/configure.ac	Wed Aug 26 13:27:48 2020 -0400
+++ b/configure.ac	Wed Aug 26 14:55:10 2020 -0400
@@ -27,7 +27,7 @@
 
 ### Initialize Autoconf
 AC_PREREQ([2.65])
-AC_INIT([GNU Octave], [6.0.1], [https://octave.org/bugs.html], [octave],
+AC_INIT([GNU Octave], [6.0.90], [https://octave.org/bugs.html], [octave],
         [https://www.gnu.org/software/octave/])
 
 ### Declare version numbers
@@ -41,14 +41,14 @@
 
 OCTAVE_MAJOR_VERSION=6
 OCTAVE_MINOR_VERSION=0
-OCTAVE_PATCH_VERSION=1
+OCTAVE_PATCH_VERSION=90
 
 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument.
 OCTAVE_VERSION="$PACKAGE_VERSION"
 
 OCTAVE_COPYRIGHT="Copyright (C) 2020 The Octave Project Developers."
 
-OCTAVE_RELEASE_DATE="2020-02-17"
+OCTAVE_RELEASE_DATE="2020-08-26"
 
 ## The "API version" is used as a way of checking that interfaces in the
 ## liboctave and libinterp libraries haven't changed in a backwardly
@@ -63,7 +63,7 @@
 dnl FIXME: Since we also set libtool versions for liboctave and libinterp,
 dnl perhaps we should be computing the "api version" from those versions numbers
 dnl in some way instead of setting it independently here.
-OCTAVE_API_VERSION="api-v54"
+OCTAVE_API_VERSION="api-v55"
 
 AC_SUBST(OCTAVE_MAJOR_VERSION)
 AC_SUBST(OCTAVE_MINOR_VERSION)