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