# HG changeset patch # User John W. Eaton # Date 1394134835 18000 # Node ID 43cc202335dc4a53a3d8fc9ca90acaa81d2e63d3 # Parent 06970f4625b8ec9ea8359e4f8f44dc4d28767ca1 Version 3.8.1 released. * configure.ac (OCTAVE_VERSION): Now 3.8.1. (OCTAVE_MINOR_VERSION): Now 1. (OCTAVE_RELEASE_DATE): Set to 2014-03-06. Update copyright date for startup message. diff -r 06970f4625b8 -r 43cc202335dc configure.ac --- a/configure.ac Thu Mar 06 14:25:25 2014 -0500 +++ b/configure.ac Thu Mar 06 14:40:35 2014 -0500 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl -dnl Copyright (C) 1993-2013 John W. Eaton +dnl Copyright (C) 1993-2014 John W. Eaton ### ### This file is part of Octave. ### @@ -19,21 +19,21 @@ ### . AC_PREREQ([2.62]) -AC_INIT([GNU Octave], [3.8.1-rc4], [http://octave.org/bugs.html], [octave]) +AC_INIT([GNU Octave], [3.8.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=3 OCTAVE_MINOR_VERSION=8 -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) 2013 John W. Eaton and others." - -OCTAVE_RELEASE_DATE="2014-02-26" +OCTAVE_COPYRIGHT="Copyright (C) 2014 John W. Eaton and others." + +OCTAVE_RELEASE_DATE="2014-03-06" ## The "API version" is used as a way of checking that interfaces in the ## liboctave and libinterp libraries haven't changed in a backwardly