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