# HG changeset patch # User jwe # Date 854470334 0 # Node ID 652a14bff36b172b26ead28fc7a6c5219ff497f1 # Parent d7d5c82e7cc090d9a8eca0c9f0dd1e54247ff828 [project @ 1997-01-28 16:52:00 by jwe] diff -r d7d5c82e7cc0 -r 652a14bff36b Announce --- a/Announce Tue Jan 28 01:33:45 1997 +0000 +++ b/Announce Tue Jan 28 16:52:14 1997 +0000 @@ -1,16 +1,40 @@ -Subject: ANNOUNCE: Octave Version 2.0.1 released +Subject: ANNOUNCE: Octave Version 2.0.2 released -Octave version 2.0.1 is now available for ftp from ftp.che.wisc.edu +Octave version 2.0.2 is now available for ftp from ftp.che.wisc.edu in the directory /pub/octave. Diffs from the previous release are also available in the same directory. - -rw-r--r-- 1 jwe 3269864 Jan 7 03:02 octave-2.0.1.tar.gz - -rw-r--r-- 1 jwe 33695 Jan 7 03:10 octave-2.0-2.0.1.patch.gz + -rw-r--r-- 1 jwe 3281655 Jan 27 19:43 octave-2.0.2.tar.gz + -rw-r--r-- 1 jwe 91507 Jan 27 19:40 octave-2.0.1-2.0.2.patch.gz + +In addition to the source distributions, there are binary +distributions available for Linux running on Intel systems and OSF/1 +running on Alpha systems. Binary distributions for other platforms +will be available from ftp.che.wisc.edu when they are contributed by +volunteers. If you would like to help to make a binary distribution +available, please contact bug-octave@bevo.che.wisc.edu. + +Version 2.0.2 is primarily a bug-fixing release. Most bugs reported +since the release of version 2.0.1 have been fixed. There are also a +few new features, including: -This is a bug-fixing release. Most bugs reported since the release of -version 2.0 have been fixed. There are no new features. You can help -make Octave more reliable by reporting any bugs you find to -bug-octave@bevo.che.wisc.edu. + * Octave now stops executing commands from a script file if an error + is encountered. + + * The return, and break commands now cause Octave to quit executing + commands from script files. When used in invalid contexts, the + break, continue, and return commands are now simply ignored + instead of producing parse errors. + + * size ("") is now [0, 0]. + + * New functions: + + sleep -- pause execution for a specified number of seconds + usleep -- pause execution for a specified number of microseconds + +You can help make Octave more reliable by reporting any bugs you find +to bug-octave@bevo.che.wisc.edu. Octave is a high-level interactive language primarily intended for numerical computations. It is mostly compatible with Matlab. diff -r d7d5c82e7cc0 -r 652a14bff36b ChangeLog --- a/ChangeLog Tue Jan 28 01:33:45 1997 +0000 +++ b/ChangeLog Tue Jan 28 16:52:14 1997 +0000 @@ -1,3 +1,7 @@ +Tue Jan 28 09:48:32 1997 John W. Eaton + + * aclocal.m4 (ld_run_path): Fix typo in last fix. + Mon Jan 27 00:10:10 1997 John W. Eaton * Version 2.0.2 released. diff -r d7d5c82e7cc0 -r 652a14bff36b README.ftp --- a/README.ftp Tue Jan 28 01:33:45 1997 +0000 +++ b/README.ftp Tue Jan 28 16:52:14 1997 +0000 @@ -9,22 +9,14 @@ -------------------- Binaries for several popular systems are distributed along with the -source, and are available in the following subdirectories of -/pub/octave/BINARIES: - - subdirectory binary compiled on - ----------------------------------------------------------------- - alpha-dec-osf1.3 DEC Alpha/OSF1 - mips-dec-ultrix4.2 DECstation running Ultrix 4.2 - rs6000-ibm-aix3.2.5 RS/6000 running AIX 3.2.5 - sparc-sun-sunos4.1.2 Sun SPARC running SunOS 4.1.2 +source, and are available in subdirectories of /pub/octave/BINARIES. Note: - * Binary distributions for Octave 2.0 will be available when there + * Binary distributions for Octave 2.0.x will be available when there is time to create them. We depend on volunteers to make binaries for most systems. If you would like to help out, please contact - bug-octavebevo.che.wisc.edu. + bug-octave@bevo.che.wisc.edu. * Gnuplot binaries are *not* included. For the plotting commands to work, you will need to install gnuplot on your system. See the @@ -34,11 +26,6 @@ * Octave has been compiled assuming that you have `less' installed. You can use the environment variable PAGER to choose another pager. - * We only have a limited amount of time available to devote to - making binaries, so binaries may not be immediately available - for some platforms. Please contact bug-octave@bevo.che.wisc.edu if - you are interested in helping make binary distributions available. - A note about .gz files: ---------------------- diff -r d7d5c82e7cc0 -r 652a14bff36b aclocal.m4 --- a/aclocal.m4 Tue Jan 28 01:33:45 1997 +0000 +++ b/aclocal.m4 Tue Jan 28 16:52:14 1997 +0000 @@ -126,7 +126,7 @@ fi dnl ld_run_path=`echo $foutput | \ - sed -n -e 's/^.*\(LD_RUN_PATH *= *\([^ ]*\).*/\1/p'` + sed -n -e 's/^.*LD_RUN_PATH *= *\([^ ]*\).*/\1/p'` dnl dnl We are only supposed to find this on Solaris systems, and this dnl substitution is probably only going to work with gcc on those diff -r d7d5c82e7cc0 -r 652a14bff36b liboctave/ChangeLog --- a/liboctave/ChangeLog Tue Jan 28 01:33:45 1997 +0000 +++ b/liboctave/ChangeLog Tue Jan 28 16:52:14 1997 +0000 @@ -1,3 +1,7 @@ +Tue Jan 28 10:46:02 1997 John W. Eaton + + * Makefile.in (install-inc): Create a relative symbolic link. + Mon Jan 27 15:52:27 1997 John W. Eaton * Version 2.0.2 released. diff -r d7d5c82e7cc0 -r 652a14bff36b src/ChangeLog --- a/src/ChangeLog Tue Jan 28 01:33:45 1997 +0000 +++ b/src/ChangeLog Tue Jan 28 16:52:14 1997 +0000 @@ -1,3 +1,8 @@ +Tue Jan 28 10:48:28 1997 John W. Eaton + + * Makefile.in (install-inc): Create a relative symbolic link. + (install-bin): Create a relative symbolic link. + Mon Jan 27 12:12:03 1997 John W. Eaton * Version 2.0.2 released.