# HG changeset patch # User John W. Eaton # Date 1458588908 14400 # Node ID 5162cdfb56d8e31ad00dc260a26d1c92c69c2acf # Parent 04e0598f8b94f89e3bf1e4f6dd5c3d3503e350f6 Version 4.0.1 released. * configure.ac (OCTAVE_VERSION): Now 4.0.1. (OCTAVE_PATCH_VERSION): Now 1. (OCTAVE_COPYRIGHT): Update year to 2016. (OCTAVE_RELEASE_DATE): Set to 2016-03-21. diff -r 04e0598f8b94 -r 5162cdfb56d8 configure.ac --- a/configure.ac Tue Mar 15 19:02:08 2016 +1100 +++ b/configure.ac Mon Mar 21 15:35:08 2016 -0400 @@ -19,21 +19,21 @@ ### . AC_PREREQ([2.63]) -AC_INIT([GNU Octave], [4.0.1-rc4], [http://octave.org/bugs.html], [octave]) +AC_INIT([GNU Octave], [4.0.1], [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=1-rc4 +OCTAVE_PATCH_VERSION=1 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="2016-01-18" +OCTAVE_COPYRIGHT="Copyright (C) 2016 John W. Eaton and others." + +OCTAVE_RELEASE_DATE="2016-03-21" ## The "API version" is used as a way of checking that interfaces in the ## liboctave and libinterp libraries haven't changed in a backwardly