+Sat Jan 3 18:49:18 GMT 2004 Nicholas Clark <nick@ccl4.org>
+
+ Version 2.09
+
+ Fix minor problems with the CPAN release
+ 1: Make Storable.xs to work on 5.8.2 and later (already in the core)
+ 2: Ship the linux hints file
+ 3: Ship Test::More for the benefit of Perls pre 5.6.2
+ 4: Correct Makefile.PL to install in core for 5.8.0 and later
+
Sat Sep 6 01:08:20 IST 2003 Abhijit Menon-Sen <ams@wiw.org>
Version 2.08
Storable.pm The perl side of Storable
Storable.xs The C side of Storable
ChangeLog Changes since baseline
+hints/linux.pl Hint file to drop gcc to -O2
t/blessed.t See if Storable works
t/canonical.t See if Storable works
t/code.t Test (de)serialization of code references
t/tied_items.t See if Storable works
t/utf8.t See if Storable works
t/utf8hash.t See if Storable works
+t/Test/Builder.pm For testing the CPAN release on pre 5.6.2
+t/Test/More.pm For testing the CPAN release on pre 5.6.2
+t/Test/Simple.pm For testing the CPAN release on pre 5.6.2
MAN3PODS => {},
# We now ship this in t/
# PREREQ_PM => { 'Test::More' => '0.41' },
- INSTALLDIRS => 'perl',
+ INSTALLDIRS => $] >= 5.007 ? 'perl' : 'site',
VERSION_FROM => 'Storable.pm',
dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
);
- Storable 2.07
+ Storable 2.09
Copyright (c) 1995-2000, Raphael Manfredi
- Copyright (c) 2001,2002, Larry Wall
+ Copyright (c) 2001-2004, Larry Wall
------------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
use AutoLoader;
use vars qw($canonical $forgive_me $VERSION);
-$VERSION = '2.08';
+$VERSION = '2.09';
*AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr...
#