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