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