perl-module: fix version mismatch between module and PSPP
authorBen Pfaff <blp@gnu.org>
Fri, 6 Feb 2009 04:34:27 +0000 (20:34 -0800)
committerBen Pfaff <blp@gnu.org>
Fri, 6 Feb 2009 04:35:55 +0000 (20:35 -0800)
The version number update in the previous Perl module commit
broke the Perl module's version number checking.  Oops.  This fixes
it (and updates NEWS).

NEWS
perl-module/README
perl-module/lib/PSPP.pm

diff --git a/NEWS b/NEWS
index d17d57a574c2e76c18c6b142dfe52a42f2845c29..a83f83102ef3c29c5d04f1e9651bbcbf9fca9a66 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,14 @@
 PSPP NEWS -- history of user-visible changes.
-Time-stamp: <2008-10-11 10:04:51 blp>
-Copyright (C) 1996-9, 2000, 2008 Free Software Foundation, Inc.
+Time-stamp: <2009-02-05 20:31:51 blp>
+Copyright (C) 1996-9, 2000, 2008, 2009 Free Software Foundation, Inc.
 See the end for copying conditions.
 
 Please send PSPP bug reports to bug-gnu-pspp@gnu.org.
 
+Changes from 0.7.1 to 0.7.2:
+
+ * Updated Perl module interface.
+
 Changes from 0.7.0 to 0.7.1:
 
  *  Added a perl module to facilitate reading and writing of pspp system 
index 0b93de026d3573c05564fe3d96b78ebbd6c63559..74d6220e99d8fd110e6b4e93976b35a39f1b2747 100644 (file)
@@ -6,7 +6,7 @@ system files.
 
 INSTALLATION
 
-To install you must have first installed and built pspp 0.7.1 or
+To install you must have first installed and built pspp 0.7.2 or
 later.  Pspp is not required to use this module, only to install
 it. 
 
index 2957abb90d419067951efec19d66794d75c90c15..3cb9f3be48a5f33ecf21591977e1deacb27e09e4 100644 (file)
@@ -21,7 +21,7 @@ None by default.
 
 =cut
 BEGIN {
-       $PSPP::VERSION='0.7.1';
+       $PSPP::VERSION='0.7.2';
        require XSLoader;
        XSLoader::load('PSPP', $PSPP::VERSION);
 }