diff options
author | Nicholas Clark <nick@ccl4.org> | 2002-10-08 00:35:34 +0100 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-10-12 14:38:19 +0000 |
commit | a2307be4b899f5bb1ef09b534ea96c8d5ffd7a73 (patch) | |
tree | 9e9bcb4657d827757463200356e073f442bf0c46 /ext/Storable/Storable.pm | |
parent | 5d0b5eb0d84b46759ea760215f127e4722154ba8 (diff) | |
download | perl-a2307be4b899f5bb1ef09b534ea96c8d5ffd7a73.tar.gz |
Storable 2.06 (was Re: Bug in ext/Storable/t/integer.t)
Message-ID: <20021007223534.GD286@Bagpuss.unfortu.net>
p4raw-id: //depot/perl@18008
Diffstat (limited to 'ext/Storable/Storable.pm')
-rw-r--r-- | ext/Storable/Storable.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/Storable/Storable.pm b/ext/Storable/Storable.pm index 1283b7983e..1a62e622f7 100644 --- a/ext/Storable/Storable.pm +++ b/ext/Storable/Storable.pm @@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter DynaLoader); use AutoLoader; use vars qw($canonical $forgive_me $VERSION); -$VERSION = '2.05'; +$VERSION = '2.06'; *AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr... # @@ -361,6 +361,9 @@ sub thaw { return $self; } +1; +__END__ + =head1 NAME Storable - persistence for Perl data structures |