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