From 00d84d9cfd8260a3ddfe804e9ae741558213dbd2 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 5 Feb 2009 20:34:27 -0800 Subject: [PATCH] perl-module: fix version mismatch between module and PSPP 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 | 8 ++++++-- perl-module/README | 2 +- perl-module/lib/PSPP.pm | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index d17d57a5..a83f8310 100644 --- 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 diff --git a/perl-module/README b/perl-module/README index 0b93de02..74d6220e 100644 --- a/perl-module/README +++ b/perl-module/README @@ -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. diff --git a/perl-module/lib/PSPP.pm b/perl-module/lib/PSPP.pm index 2957abb9..3cb9f3be 100644 --- a/perl-module/lib/PSPP.pm +++ b/perl-module/lib/PSPP.pm @@ -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); } -- 2.30.2