Towards 1.16: require YAZ 2.1.41 and include zhello.pl
authormike <mike>
Wed, 6 Dec 2006 11:18:33 +0000 (11:18 +0000)
committermike <mike>
Wed, 6 Dec 2006 11:18:33 +0000 (11:18 +0000)
Changes
MANIFEST
Makefile.PL
lib/Net/Z3950/ZOOM.pm

diff --git a/Changes b/Changes
index 5d9ef6f..1be9e3f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,13 @@
-$Id: Changes,v 1.52 2006-12-01 14:17:59 mike Exp $
+$Id: Changes,v 1.53 2006-12-06 11:18:33 mike Exp $
 
 Revision history for Perl extension Net::Z3950::ZOOM.
 
+1.16  (IN PROGRESS)
+       - Require version 2.1.41 or better of YAZ, so that Init
+         Response options are available using
+         $conn->option("init_opt_sort") etc.
+       - Include samples/zoom/zhello.pl to exercise these options.
+
 1.15  Fri Dec  1 14:17:49 GMT 2006
        - ZOOM::Error::INIT is renamed to ZOOM::Error::ZINIT, since
          INIT is a reserved word in Perl.  In version 1.14 and
index ff4ebb8..adb506a 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-# $Id: MANIFEST,v 1.31 2006-10-04 17:11:18 mike Exp $
+# $Id: MANIFEST,v 1.32 2006-12-06 11:18:33 mike Exp $
 
 Changes
 Makefile.PL
@@ -48,3 +48,4 @@ samples/zoom/async.pl
 samples/zoom/trivial-async.pl
 samples/zoom/update.pl
 samples/zoom/zselect
+samples/zoom/zhello.pl
index 9e7d4e5..51eaf4e 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL,v 1.16 2006-11-28 16:47:19 mike Exp $
+# $Id: Makefile.PL,v 1.17 2006-12-06 11:18:33 mike Exp $
 
 use 5.008;
 use ExtUtils::MakeMaker;
@@ -16,7 +16,7 @@ will also need to install "libyaz-dev" in order to build this module.
 }
 
 chomp($yazver);
-check_version($yazver, "2.1.40");
+check_version($yazver, "2.1.41");
 
 # For Windows use
 # $yazinc = '-Ic:\yaz\include'
index bcac0ea..d9ccefa 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: ZOOM.pm,v 1.30 2006-12-01 13:46:58 mike Exp $
+# $Id: ZOOM.pm,v 1.31 2006-12-06 11:18:33 mike Exp $
 
 package Net::Z3950::ZOOM; 
 
@@ -6,7 +6,7 @@ use 5.008;
 use strict;
 use warnings;
 
-our $VERSION = '1.15';
+our $VERSION = '1.16';
 
 require XSLoader;
 XSLoader::load('Net::Z3950::ZOOM', $VERSION);