# HG changeset patch # User John W. Eaton # Date 1432391740 14400 # Node ID 3ccc2d02e64b61c6827009d42e5b12274e7ba5fc # Parent 8a25649b9c774f3fd1dbe1a60a51476b992bf333 Version 4.0.0 released. * configure.ac (OCTAVE_VERSION): Now 4.0.0. (OCTAVE_MAJOR_VERSION): Now 4. (OCTAVE_MINOR_VERSION): Now 0. (OCTAVE_PATCH_VERSION): Now 0. (OCTAVE_RELEASE_DATE): Set to 2015-05-23. diff -r 8a25649b9c77 -r 3ccc2d02e64b configure.ac --- a/configure.ac Sun May 24 23:23:29 2015 +0200 +++ b/configure.ac Sat May 23 10:35:40 2015 -0400 @@ -19,21 +19,21 @@ ### . AC_PREREQ([2.63]) -AC_INIT([GNU Octave], [4.0.0-rc4], [http://octave.org/bugs.html], [octave]) +AC_INIT([GNU Octave], [4.0.0], [http://octave.org/bugs.html], [octave]) dnl Note that the version number is duplicated here and in AC_INIT dnl because AC_INIT requires it to be static, not computed from dnl shell variables. OCTAVE_MAJOR_VERSION=4 OCTAVE_MINOR_VERSION=0 -OCTAVE_PATCH_VERSION=0-rc4 +OCTAVE_PATCH_VERSION=0 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg OCTAVE_VERSION="$PACKAGE_VERSION" OCTAVE_COPYRIGHT="Copyright (C) 2015 John W. Eaton and others." -OCTAVE_RELEASE_DATE="2015-03-20" +OCTAVE_RELEASE_DATE="2015-05-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