Merge 'master' into 'psppsheet'.
[pspp] / NEWS
1 PSPP NEWS -- history of user-visible changes.
2 Copyright (C) 1996-2000, 2008-2012 Free Software Foundation, Inc.
3 See the end for copying conditions.
4
5 Please send PSPP bug reports to bug-gnu-pspp@gnu.org.
6
7 Changes from 0.6.2 to 0.7.9:
8
9  * New commands:
10
11    - ADD FILES
12    - CORRELATIONS
13    - DATAFILE ATTRIBUTES
14    - DATASET ACTIVATE
15    - DATASET CLOSE
16    - DATASET COPY
17    - DATASET DECLARE
18    - DATASET DISPLAY
19    - DATASET NAME
20    - LOGISTIC REGRESSION
21    - MATCH FILES
22    - MEANS
23    - MRSETS
24    - PRESERVE and RESTORE
25    - QUICK CLUSTER
26    - RELIABILITY
27    - ROC
28    - SAVE TRANSLATE to CSV and tab-delimited files
29    - UPDATE
30    - VARIABLE ATTRIBUTES
31
32  * Changes to existing commands:
33
34    - AUTORECODE has a new GROUP subcommand.
35
36    - CROSSTABS has been re-implemented to fix numerous bugs.
37
38    - EXAMINE: /MISSING=LISTWISE is now the default.
39
40    - DO REPEAT command has been reimplemented.  Now, when DO REPEAT
41      contains an INCLUDE or INSERT command, substitutions are not
42      applied to the included file.
43   
44    - HOST has been updated to use more modern syntax.
45
46    - Most commands that work with data files now support a new
47      ENCODING subcommand.
48
49    - MISSING VALUES can now assign missing values to long string
50      variables.
51
52    - ONEWAY: the POSTHOC subcommand is now implemented.
53
54    - The following new subcommands to NPAR TESTS have been implemented:
55      COCHRAN, FRIEDMAN, JONCKHEERE-TERPSTRA, KENDALL, KRUSKAL-WALLIS, MANN-WHITNEY, 
56      MCNEMAR, SIGN, WILCOXON, and RUNS
57
58    - SET and SHOW no longer have ENDCMD, NULLINE, PROMPT, CPROMPT, and
59      DPROMPT subcommands.  The defaults are now fixed values.
60
61    - SHOW now has a JOURNAL subcommand, to show the location of the
62      journal file.
63
64    - VALUE LABELS can now assign value labels to long string
65      variables.
66
67  * Other language changes:
68
69    - The new DATASET commands replace the "scratch file" PSPP
70      extension, which is no longer supported.
71
72    - Strings may now include arbitrary Unicode code points specified
73      in hexadecimal, using the syntax U'hhhh'.  For example, Unicode
74      code point U+1D11E, the musical G clef character, may be
75      expressed as U'1D11E'.
76
77      See the "Tokens" section in the PSPP manual for more information.
78
79    - In previous versions of PSPP, in a string expressed in
80      hexadecimal with X'hh' syntax, the hexadecimal digits expressed
81      bytes in the locale encoding.  In this version of PSPP, X'hh'
82      syntax always expresses bytes in UTF-8 encoding.
83
84      See the "Tokens" section in the PSPP manual for more information.
85
86  * PSPPIRE graphical user interface improvements:
87
88    - Added support for non-ASCII characters in strings, labels and
89      variable names.
90
91    - A "Split Window" function is available, which makes it easier to
92      see different parts of a large data file.
93
94    - Data files can now be opened by specifing their name as the first
95      argument.  This means that on a properly configured desktop, double
96      clicking on an icon will open the file.
97
98  * Output changes:
99
100    - The new "cairo" output driver supports output in PostScript, PDF,
101      and SVG formats.  Its functionality is a superset of that of the
102      "postscript" driver, which has been removed.  You must have Cairo
103      and Pango installed to build the "cairo" driver.
104
105    - Charts are now produced with Cairo and Pango, instead of libplot.
106      Without them, the new graphing features will not work.  If you do
107      not have Cairo and Pango installed, you must run `configure' with
108      --without-cairo.
109
110    - The plain text output driver now properly supports multibyte UTF-8
111      characters, including double-width characters and combining
112      accents.
113
114    - Output to OpenDocument format is now supported.
115
116    - The HTML output is much improved.
117
118  * The "pspp" program has a new option --batch (or -b) that selects
119    "batch" syntax mode.  In previous versions of PSPP this syntax mode
120    was the default.  Now a new "auto" syntax mode is the default.  In
121    "auto" mode, PSPP interprets most syntax files correctly regardless
122    of their intended syntax mode.
123
124    See the "Syntax Variants" section in the PSPP manual for more
125    information.
126
127  * The "pspp" program has a new option --syntax-encoding that
128    specifies the encoding for syntax files listed on the command line,
129    as well as the default encoding for syntax files included with
130    INCLUDE or INSERT.  The default is to accept the system locale
131    encoding, UTF-8, UTF-16, or UTF-32, automatically detecting which
132    one the system file uses.
133
134    See the documentation for the INSERT command in the PSPP manual for
135    more information.
136
137  * A new Perl module allows Perl programs to read and write PSPP
138    system files.
139
140  * A tutorial chapter has been added to the user manual.
141 \f
142 Changes from 0.6.1 to 0.6.2:
143
144   * New translations:
145
146     - Dutch, thanks to Harry Thijssen.
147
148     - Brazilian Portuguese, thanks to Michel Boaventura.
149
150     Thanks for translations are also due to the coordinators at
151     translationproject.org.
152
153   * Statistical bug fixes:
154
155     - REGRESSION: Report correct standard error of the estimate (bug
156       #25677).
157
158     - T-TEST: Report correct significance of paired sample T-test in
159       the common case (bug #26936) and corner cases.  Thanks to Mike
160       Griffiths and Matej Cepl for reporting these bugs.
161
162   * Build fixes and changes:
163
164     - Fix build with GTK+ 2.17.4 and later.
165
166     - Make running "make" after running "configure" with different
167       settings reliably rebuild version.c.
168
169     - Cygwin and MinGW build fixes.
170
171     - Fixes for building with recent gnulib.
172
173     - The Makefile now honors two new variables, PSPP_LDFLAGS and
174       PSPPIRE_LDFLAGS, that affect linking of the PSPP and PSPPIRE
175       binaries, respectively.  This makes building easier for some
176       packagers.
177
178     - Fixes for "configure --enable-relocatable" (bug #25508).
179
180   * Data file bug fixes and changes:
181
182     - Fix reading text data files that contain a mix of white space
183       and commas.  Now "a ,b" is treated as two fields containing "a"
184       and "b"; previously it was treated as three, with an empty field
185       in the middle.
186
187     - Fix writing corrupted .sav files on Windows.
188
189     - Fix writing variable labels longer than 252 bytes to save files.
190       Thanks to Robert Westlund for reporting this bug.
191
192     - Fix writing corrupted .por files (bug #26034).
193
194     - Fix reading .por files whose initial lines are not padded out
195       with spaces as expected.
196
197     - PSPP will no longer issue warnings about some .sav file records
198       or values that it does not understand.  These warnings were
199       harmless, but needlessly alarmed some users.
200
201     - Fix crash reading empty string fields from PostgreSQL databases.
202
203   * Bug fixes that affect PSPP and PSPPIRE:
204
205     - Users may now control precision of output statistics.  Instead
206       of hard coding the width and decimals of output numbers, respect
207       the default format in most instances.  Counts are now normally
208       displayed with the format of the weight variable, if any.
209
210     - Fix crash when an INSERT command specifies the name of a file
211       that does not exist (bug #24569).
212
213     - Fix crash when CROSSTABS specifies a long-string variable (bugs
214       #24557 and #26131).
215
216     - Fix crash drawing pie charts with many segments.
217
218     - Fix crash when NUMERIC specifies an invalid format.
219
220   * PSPPIRE bug fixes and changes:
221
222     - On Windows, write the output file to the user's home directory
223       instead of the current directory, to better match user
224       expectations.
225
226     - Some data editor fixes.
227
228   * Documentation:
229
230     - Fix typo in BINOMIAL section of user manual (bug #25892).
231
232 Changes from 0.6.0 to 0.6.1:
233
234   * Statistical bug fixes:
235
236     - Report correct standardized regression coefficients in linear
237       regression output (bug #23567).
238
239   * Bug fixes that affect PSPP and PSPPIRE:
240
241     - Avoid crash with pie charts (bug #24014).
242
243     - Don't append % to count totals (bug #24003).
244
245     - Don't crash on bad input (bug #24031).
246
247     - Don't crash if "end data." is not left aligned (bug #24115).
248
249     - Change default workspace value to 64 MB, to avoid unnecessary
250       disk accesses on modern machines.
251
252   * PSPPIRE bug fixes:
253
254     - Add ".sav" or ".por" suffix to filename when saving with Save_As
255       (bug #23137).
256
257     - Make it possible to reopen the output window on Windows (bug
258       #24033).
259
260     - A POSIX regular expression library is now included and used
261       automatically if the host does not have one or has one that is
262       inadequate.
263
264   * Build fixes and changes:
265
266     - Work around bug in GSL that prevented build with recent GCC
267       versions without manually adding -fgnu89-inline to CFLAGS.
268
269     - Also warn about missing prerequisites as we encounter them (bug
270       #24445).
271
272     - Distribute necessary files to allow users working from the
273       distributed tarball to configure with --enable-gui-tools.
274
275     - Append $(EXEEXT_FOR_BUILD) to output file name when building
276       q2c, fixing build problems on Windows.
277
278     - GSL 1.8 or later is now required.
279
280     - Build errors with --enable-relocatable were fixed.
281
282   * The German translations were removed, since native German speakers
283     found them too poor to be useful.
284
285 Changes from 0.4.0 to 0.6.0:
286
287   * The PSPP license is now version 3 or later of the GNU General
288     Public License.  Previously, it was version 2 or later.
289
290   * PSPP now has a graphical interface, called PSPPIRE.  This
291     interface allows you to enter data and variable definitions
292     interactively.  Commands may be executed in syntax form, or by
293     using the interactive dialog boxes available from the dropdown
294     menus.
295
296   * A few sample syntax files are now included in the `examples'
297     directory.
298
299   * Numerous major and minor bugs have been fixed.
300
301   Build changes:
302
303     * The INSTALL file now reflects the details of how to install
304       PSPP.  It is a tailored version of the generic installation
305       instructions, instead of a verbatim copy.
306
307     * iconv, which is ordinarily installed as part of a Unix-like
308       system, is now required.  If you don't have it already, you can
309       install GNU libiconv (http://www.gnu.org/software/libiconv/).
310
311     * libxml2 and zlib are new optional dependencies.  They are
312       required to use PSPP's support for reading Gnumeric files.
313
314   Statistical procedure changes:
315
316     * REGRESSION is a new procedure for fitting linear models to data
317       via least-squares estimation.
318
319     * NPAR TESTS is a new procedure for non-parametric tests.  In this
320       release, it supports binomial and chi-square tests.
321
322     * RANK is a new procedure to rank variables.  It supports numerous
323       forms of ranking.
324
325     * FREQUENCIES can now output histograms and pie charts.  These
326       features were present in earlier releases, but not documented.
327
328   User interface changes:
329
330     * In many situations where PSPP once terminated with a fatal
331       error, PSPP now recovers and continues execution.
332
333     * PSPP is now able to start up and run even if it cannot find its
334       configuration files.
335
336     * Journaling of interactive commands to a disk file is now
337       implemented.  By default, journaling is enabled, to a file named
338       `pspp.jnl' in the current directory.  SET JOURNAL may be used to
339       control journaling.
340
341     * The use of `+' between syntax file names on the command line to
342       prevent the dictionary from being cleared between their
343       executions is no longer supported.  All syntax files are now
344       executed as if `+' had been specified.
345
346     * The -d/--define and -u/--undef command line options are no
347       longer supported.  Instead, use /usr/bin/env or shell primitives
348       to define or clear environment variables before invoking PSPP.
349
350     * If a syntax file named named `rc' is found in a configuration
351       directory (such as $HOME/.pspp), it is executed before any
352       syntax file specified on the command line.  The -r or
353       --no-statrc command line option may be used to disable this
354       behavior.
355
356   Output changes:
357
358     * Output configuration options have changed.  Please refer to the
359       manual for a full description of the available options.
360
361       In consequence, you will need to reinstall your "devices" file.
362       "make install" will do this for you.
363
364     * Most error messages are now written to PSPP output files by
365       default.  SET ERROR can be used to disable this behavior.
366
367     * When invoked interactively, PSPP now by default produces output
368       on the terminal, piping it through the "more" program.
369       Previously, by default output was written only to file
370       pspp.list.  On most terminals, the page length used for output
371       automatically adapts to the terminal size, even if the terminal
372       is resized.
373
374     * ASCII driver:
375
376       - This driver now supports charts in output.  Charts are written
377         as separate files that the main output file refers to.  By
378         default, charts are written in PNG format to files named
379         pspp-1.png, pspp-2.png, and so on.
380
381       - Configurations are provided that use VT100 (and xterm)
382         line-drawing characters in tables.  The option "-o list-vt100"
383         requests use of this device for output to pspp.list.
384
385     * PostScript driver:
386
387       - The default paper size is now determined using the PAPERSIZE
388         environment variable, or the LC_PAPER locale category on
389         systems that support it.  If these are not set, the default is
390         now A4, instead of US letter.  To make US letter the default,
391         set PAPERSIZE to "letter" in your environment.
392
393       - Font metrics are now read from AFM files, instead of
394         Groff-format metrics files.  PostScript fonts can now be
395         embedded in output.
396
397         In consequence, you will need to install an AFM file for each
398         font used in PostScript output.  "make install" will install
399         AFM files for the standard PostScript fonts, including the
400         ones that the PostScript driver uses by default.
401
402       - Standard paper sizes no longer need to be specified through a
403         configuration file.  The "papersize" configuration file is no
404         longer needed, or supported.
405
406       - The PostScript prologue is no longer obtained from the
407         "ps-prologue" configuration file.  This configuration file is
408         no longer needed, or supported.
409
410     * HTML driver:
411
412       - The HTML prologue is no longer obtained from the
413         "html-prologue" configuration file.  This configuration file
414         is no longer needed, or supported.
415
416   Command language changes:
417
418     * The following commands are new:
419
420       - GET DATA, which currently supports reading Gnumeric files and
421         text data files.  It will be extended later to read other
422         types of foreign data.
423
424       - CD, to change the current directory.
425
426       - INSERT, to execute a syntax file.
427
428       - DELETE VARIABLES, to remove variables from the active file
429         dictionary.
430
431       - ADD DOCUMENT, to add text to active file documents.
432
433       - CLOSE FILE HANDLE (a PSPP extension; see below).
434
435       - XEXPORT, a PSPP extension that is a transformation equivalent
436         to EXPORT.
437
438     * The following functions for transformation expressions are new:
439
440       - DATEDIFF, for computing the difference of two dates.
441
442       - DATESUM, for advancing a date by a specified duration.
443
444       - VALUELABEL, to obtain the value label for a value.
445
446     * PSPP now supports very long string variables (over 255 bytes
447       long).
448
449     * MATCH FILES now supports the FIRST and LAST subcommands.
450
451     * Previous versions of PSPP prohibited using commands to both read and
452       write a single file at the same time.  Now, PSPP allows this, and
453       the new version of the file atomically replaces the old version.
454
455     * The following commands are no longer available.  They will be
456       re-implemented in a later release:
457
458       - CLEAR TRANSFORMATIONS
459
460       - MATRIX DATA
461
462       - REPEATING DATA
463
464     * The PROCESS IF command, which was deprecated, has been removed.
465       You may replace any usage of it by SELECT IF following
466       TEMPORARY, which has the same effect.
467
468     * The output format for variables created by VECTOR may now be
469       specified as part of the VECTOR syntax.
470
471   "Scratch files", a new PSPP extension:
472
473     A scratch file, like a system file, consists of a dictionary and
474     any number of cases.  Small scratch files are stored in memory;
475     one that grows too large is written to disk.  By default, any file
476     handle whose name begins with # is assumed to refer to a scratch
477     file.
478
479     Scratch files can be used just about anywhere a system or portable
480     file can be used.  Also, portable files are now allowed in most
481     places that system files were allowed in previous PSPP version.
482
483     A new CLOSE FILE HANDLE command allows the storage associated with
484     scratch files to be freed.  It also allows file handles to be
485     reassigned to new files.
486
487     For more information on scratch files, refer to the "File Handles"
488     section in the PSPP manual.  For specifics of what commands now
489     allow what kinds of files to be specified, refer to the
490     documentation on those particular commands.
491
492   Data access changes:
493
494     * Binary formats and IBM/360 formats, including ASCII/EBCDIC
495       translation, are now supported.  Use FILE HANDLE to specify the
496       format of these files.
497
498     * Little-endian, big-endian, and VAX-endian formats are now
499       supported for integer binary formats when reading and writing
500       data files.  The new RIB and WIB subcommands on the SET command
501       control endianness of integer data.  The default is the host's
502       native endianness.
503
504     * IEEE 754, VAX, and IBM hexadecimal formats are now supported for
505       floating point binary formats when reading and writing data
506       files.  The new RRB and WRB subcommands on the SET command
507       control the floating point format.  The default is the host's
508       native floating point format.
509
510     * DATA LIST now supports the SKIP subcommand, to skip records at
511       the beginning of a file.  For compatibility, DATA LIST now
512       treats N format as F format for FREE and LIST format input.
513
514     * The SAVE and XSAVE commands now support the UNSELECTED,
515       PERMISSIONS, NAMES, and MAP subcommands.
516
517     * The EXPORT command has been re-implemented to obtain better
518       results.  Support for the UNSELECTED, DIGITS, and TYPE
519       subcommands has been added.
520
521     * For compatibility, PRINT now inserts a space at the beginning of
522       every output line, even lines that would otherwise be blank,
523       when OUTFILE is specified.  (The behavior of WRITE is
524       unchanged.)
525
526     * For compatibility, PRINT EJECT now inserts the digit `1' at the
527       beginning of each line that should begin a new page.
528
529     * For compatibility, WRITE now outputs the system-missing value as
530       a field filled with spaces.  Binary formats are an exception.
531       (The behavior of PRINT is unchanged.)
532
533   Documentation:
534
535     * Input and output format descriptions have been rewritten.  They
536       now precisely describe what is accepted on input and written on
537       output.
538
539     * The descriptions of the PSPP system and portable file formats
540       have been extensively revised and improved.
541
542   For developers, the build system now requires Autoconf 2.60 and
543   Automake 1.10.
544 \f
545 Changes from 0.3.0 to 0.4.0:
546
547   Changes in build dependencies:
548
549     * The GNU Scientific Library (libgsl), version 1.6 or later, is
550       now required.
551
552     * libplot from GNU plotutils is optional.  Without it, the new
553       graphing features will not work.  If you do not have it
554       installed, you must run `configure' with --without-libplot.
555
556     * libgmp2 is no longer a dependency.
557
558   Newly implemented commands and statistical features:
559
560     * EXAMINE, including its graphing features.
561
562     * FREQUENCIES now supports percentiles.
563
564     * ONEWAY.
565
566     * PERMISSIONS.
567
568     * SHOW.
569
570     * SORT CASES now sorts stably, that is, two cases with equal sort
571       criteria will be in the same relative order before and after the
572       sort.
573
574     * T-TEST (re-written).
575
576     * DATE and USE.  These commands are parsed but otherwise ignored,
577       to enhance compatibility with certain command files that invoke
578       them unnecessarily.
579
580     * VARIABLE WIDTH, VARIABLE ALIGNMENT, and VARIABLE LEVEL.  These
581       currently have no effect on PSPP output, but their values are
582       written to and read from system files and thus may affect
583       third-party software.
584
585     * SET EPOCH implemented.
586
587     * DATA LIST FREE and DATA LIST LIST now support arbitrary field
588       delimiters.
589
590     * FILE HANDLE now supports custom tab widths.
591
592   Long variable names (and other identifiers) are now supported.  Up
593   to the first 64 bytes of each identifier is significant.  PSPP now
594   reads and writes system files compatible with SPSS version 12.
595
596   New --algorithm and --syntax command line options allow
597   SPSS-compatible or enhanced modes to be selected.
598
599   Support for transformation expressions has been rewritten and
600   significantly improved.  Refer to the manual for details.
601
602   Calculation of moments (mean, standard deviation, kurtosis,
603   skewness) has been rewritten and should now be more accurate.  In
604   --algorithm=enhanced mode moments may be more accurate than SPSS in
605   some cases.
606
607   Numerous bugs have been fixed, too many to mention here.  Many new
608   tests have been added, leading to the discovery and fixing of many
609   of these bugs.
610
611   The ASCII output driver can now squeeze multiple blank lines into
612   single blank lines.
613
614   Much of the code has been rewritten and refactored.  It is now much
615   cleaner.
616
617   The FILE TYPE and REPEATING DATA commands have been disabled for
618   this release because their implementations were deemed too buggy to
619   be useful.  They will be fixed and replaced in a future release.
620
621   New pspp-mode for Emacs (in pspp-mode.el).
622
623   Added rudimentary command-line completion for interactive input.
624
625   lib/julcal and lib/dcdflib are no longer used, so they have been
626   removed.
627
628   For developers, the build system now requires Autoconf 2.58 and
629   Automake 1.7.  The included gettext has been updated to version
630   0.12.1.
631
632   Some reports state that Texinfo 4.8, the latest version, may be
633   necessary to successfully format the documentation on some systems.
634
635 Version 0.3.0 changes since 0.2.3:
636
637   Bugs fixed:
638
639     * Using alphanumeric variables in functions under AGGREGATE
640       segfaulted.  Fixed.
641
642     * Under certain circumstances, the final case would be omitted
643       from the results of an AGGREGATE operation.  Fixed.
644
645     * Undefined behavior was invoked by referencing a freed pointer
646       under certain circumstances.  Fixed.
647
648     * A wrong record size was displayed when paging the active file to
649       disk.  Fixed.
650
651     * Not having enough temporary space for sorting caused a core
652       dump.  Fixed.
653
654     * Syntax errors in function descriptions on AGGREGATE caused core
655       dumps.  Fixed.
656
657     * A null pointer was dereferenced, causing a core dump, when
658       PERCENTILES was specified on FREQUENCIES.  This fixes the
659       problem, but PSPP still doesn't calculate percentiles.
660
661     * SORT always sorted in ascending order.  Fixed.
662
663     * Some minor memory leaks in the expression parser were removed.
664
665     * Many assertions fixed for strict ANSI C compliance.
666
667   New features:
668
669     * SET ECHO ON now implemented, but turned off by default.
670
671     * PRINT specifier supported on END REPEAT.
672
673   Other:
674
675     * System libgmp2 library is used if installed instead of
676       unconditionally using the included libgmp2 subset.
677
678     * Extensive code cleanup, which continues.
679
680     * Added CORRELATIONS command parser, but not implemented.
681
682 Version 0.2.3 changes since 0.2.2:
683
684   Bugs fixed:
685
686     * SPLIT FILE with a string variable caused a core dump.  Fixed.
687
688     * Nested INCLUDEs didn't work.  Fixed.
689
690     * The MATCH FILES procedure set the values of variables not present
691       to 0.  It should have been SYSMIS.  This is now fixed.
692
693     * The REMARK command was too aggressive about skipping lines.  It
694       didn't like being the last command in a file.
695
696     * Comment parsing wasn't consistent with the rest of the code in its
697       idea of where one command ends and another starts.  This meant
698       that sometimes commands would be mysteriously ignored.  Thanks to
699       Dr. Dirk Melcher <BZN-mdksh@t-online.de> for reporting this bug.
700
701     * The TABLE subcommand on MATCH FILES worked only erratically at
702       best.  This fixes it.  Thanks to Dr. Dirk Melcher
703       <BZN-mdksh@t-online.de> for reporting this bug.
704
705     * VARIABLE LABELS rejected a slash before the first variable
706       specification, contradicting the documentation.  Thanks to Walter
707       M. Gray <graywm@northernc.on.ca> for reporting this bug.
708
709     * Because of an incorrect optimization in memory allocation,
710       CROSSTABS sometimes segfaulted when asked to output multiple
711       tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
712       reporting this bug.
713
714     * CROSSTABS didn't display value labels for column and row
715       variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
716       reporting this bug.
717
718     * WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
719       <BZN-mdksh@t-online.de> for reporting this bug.
720
721     * The TABLE subcommand on MATCH FILES worked only erratically at
722       best.  This fixes it.  Thanks to Dr. Dirk Melcher
723       <BZN-mdksh@t-online.de> for reporting this bug.
724
725     * VARIABLE LABELS rejected a slash before the first variable
726       specification, contradicting the documentation.  Thanks to Walter
727       M. Gray <graywm@northernc.on.ca> for reporting this bug.
728
729     * Because of an incorrect optimization in memory allocation,
730       CROSSTABS sometimes segfaulted when asked to output multiple
731       tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
732       reporting this bug.
733
734     * CROSSTABS didn't display value labels for column and row
735       variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
736       reporting this bug.
737
738     * WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
739       <BZN-mdksh@t-online.de> for reporting this bug.
740
741     * MATCH FILES corrupted memory and dumped core on some syntax
742       errors.  Fixed.
743
744     * MATCH FILES should set numeric values not available to the
745       system-missing value, not to 0.  Thanks to Dr. Dirk Melcher
746       <BZN-mdksh@t-online.de> for reporting this bug.
747
748     * KEEP didn't work properly on the SAVE procedure.  Fixed.  Thanks
749       to Ralf Geschke <ralf@kuerbis.org> for reporting this bug.
750
751     * Memory leak fix.
752
753     * Some systems didn't like the way open_file was coded.  Thanks to
754       Hankin <hankin@rogue.consultco.com> for pointing this out.
755
756     * The SAVE procedure didn't save long string variables properly.
757       Fixed by this patch.  Thanks to Hankin
758       <hankin@rogue.consultco.com> for this patch.
759
760     * Minor documentation fixes for MATCH FILES.
761
762 Version 0.2.2 changes since 0.2.1:
763
764   Bugs fixed:
765
766     * Fix behavior of PRINT SPACE for negative arguments.
767
768     * Fix reading some unusual system files.
769
770     * Fix LIST problems with very long variables.  Thanks to Hankin
771       <hankin@dunno.com> for this bug report.
772
773     * Fix problems with some string format specifiers.
774
775     * Fix use of $CASENUM in expressions.  Thanks to Dirk Melcher
776       <BZN-mdksh@t-online.de> for reporting this bug.
777
778     * Additional DATA LIST FREE and DATA LIST LIST fixes.  Thanks to
779       Hankin <hankin@dunno.com> again on this one.
780
781     * Sometimes you may encounter a PSPP script that has to be
782       interpreted in interactive mode.  Now you can use the -i flag to
783       do this.
784
785     * Warnings for egcs 1.1.1 cleaned up.  (However you'll get lots of
786       `unused variable' warnings under gcc 2.7.2.3, fixing this will
787       take more effort.)
788
789     * Tests fixed.
790
791     * The files in gmp need the internationalization directory in
792       their include path.  Thanks to OKUJI Yoshinori
793       <okuji@kuicr.kyoto-u.ac.jp> for pointing this out.
794
795 Version 0.2.1 changes since 0.2.0:
796
797   Bugs fixed:
798
799     * Remember to include examples/ directory in distribution :-)
800
801     * Fixed gmp compile problems for some non-i386 architectures.
802       Thanks to Hans Olav Eggestad <olav@jordforsk.nlh.no> and others
803       for reporting this.
804
805     * DATA LIST FREE and DATA LIST LIST parsing of input files is now
806       matches the documented behavior exactly, and error messages are
807       more helpful.  Thanks to Mark H. Wood <mwood@IUPUI.Edu>.
808
809 Version 0.2.0 changes since 0.1.0:
810
811   Procedures now implemented:
812     * CROSSTABS.  Please see documentation for caveats.
813
814   Transformations and utilities now implemented:
815     * AGGREGATE
816     * APPLY DICTIONARY
817     * CLEAR TRANSFORMATIONS
818     * DISPLAY (all subcommands).
819     * ERASE
820     * FLIP
821     * EXPORT
822     * HOST
823     * IMPORT
824     * MATCH FILES
825     * MATRIX DATA
826     * NEW FILE
827     * REPEATING DATA
828
829   Support for input and output through pipes: "|command" and
830   "command|" filenames; support for special filenames "-", "stdin",
831   "stdout", "stderr".
832
833   New command-line features:
834     * New option --testing-mode: Invoke heuristics to assist testing.
835     * New option --safer, -s: Don't allow certain unsafe operations.
836     * New option --command=CMD, -c CMD: Perform literal command CMD.
837     * rc file ~/.pspp/rc is executed before any other files.
838     * Now multiple syntax files can be specified.
839
840   Operator LAG is now implemented.
841
842   Added missing FILE subcommand to REREAD.
843
844   Table output manager completely rewritten.
845
846   Device configuration file syntax changed.  You will need to
847   reinstall your `devices' file.
848
849   New output driver for HTML.
850
851   PostScript driver and prologue simplified.
852
853   Many bugs fixed.  General source-code cleanup.
854
855   Added Texinfo documentation for:
856     * PSPP system file format
857     * PSPP portable file format
858     * How to write input for q2c parser generator
859     * HTML driver
860
861   PSPP language is now fully documented.  Please report any
862   inaccuracies or omissions in the documentation.
863
864 Changes for version 0.1.0:
865
866   First public release.  For changes from unreleased development
867   versions, please see ONEWS.
868 \f
869 ----------------------------------------------------------------------
870 Copyright information:
871
872    Permission is granted to anyone to make or distribute verbatim
873    copies of this document as received, in any medium, provided that
874    the copyright notice and this permission notice are preserved, thus
875    giving the recipient permission to redistribute in turn.
876
877    Permission is granted to distribute modified versions of this
878    document, or of portions of it, under the above conditions,
879    provided also that they carry prominent notices stating who last
880    changed them.
881 \f
882 Local variables:
883 version-control: never
884 mode: indented-text
885 end: