summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Memoize
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Memoize')
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm2
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/Expire.pm2
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/ExpireFile.pm2
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/ExpireTest.pm2
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/NDBM_File.pm2
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/SDBM_File.pm2
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/Storable.pm2
7 files changed, 7 insertions, 7 deletions
diff --git a/Master/tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm b/Master/tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm
index 078f69e011d..cf5f7f5bc21 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm
@@ -11,7 +11,7 @@ See L<Memoize>.
=cut
use vars qw(@ISA $VERSION);
-$VERSION = '1.02';
+$VERSION = '1.03';
@ISA = qw(DB_File GDBM_File Memoize::NDBM_File Memoize::SDBM_File ODBM_File) unless @ISA;
my $verbose = 1;
diff --git a/Master/tlpkg/tlperl/lib/Memoize/Expire.pm b/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
index 3d6d3e439ca..9b3b94444c1 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
@@ -3,7 +3,7 @@ package Memoize::Expire;
# require 5.00556;
use Carp;
$DEBUG = 0;
-$VERSION = '1.02';
+$VERSION = '1.03';
# This package will implement expiration by prepending a fixed-length header
# to the font of the cached data. The format of the header will be:
diff --git a/Master/tlpkg/tlperl/lib/Memoize/ExpireFile.pm b/Master/tlpkg/tlperl/lib/Memoize/ExpireFile.pm
index e3123b83408..06b72f8ef2a 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/ExpireFile.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/ExpireFile.pm
@@ -10,7 +10,7 @@ See L<Memoize::Expire>.
=cut
-$VERSION = '1.02';
+$VERSION = '1.03';
use Carp;
my $Zero = pack("N", 0);
diff --git a/Master/tlpkg/tlperl/lib/Memoize/ExpireTest.pm b/Master/tlpkg/tlperl/lib/Memoize/ExpireTest.pm
index 3c69e56c9f9..7f7dd28af6f 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/ExpireTest.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/ExpireTest.pm
@@ -18,7 +18,7 @@ to mjd-perl-memoize+@plover.com.
=cut
-$VERSION = '1.02';
+$VERSION = '1.03';
my %cache;
sub TIEHASH {
diff --git a/Master/tlpkg/tlperl/lib/Memoize/NDBM_File.pm b/Master/tlpkg/tlperl/lib/Memoize/NDBM_File.pm
index 07b8950a60b..ff934c656bc 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/NDBM_File.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/NDBM_File.pm
@@ -12,7 +12,7 @@ See L<Memoize>.
use NDBM_File;
@ISA = qw(NDBM_File);
-$VERSION = '1.02';
+$VERSION = '1.03';
$Verbose = 0;
diff --git a/Master/tlpkg/tlperl/lib/Memoize/SDBM_File.pm b/Master/tlpkg/tlperl/lib/Memoize/SDBM_File.pm
index 6cb11af7329..7cfaa4afb98 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/SDBM_File.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/SDBM_File.pm
@@ -12,7 +12,7 @@ See L<Memoize>.
use SDBM_File;
@ISA = qw(SDBM_File);
-$VERSION = '1.02';
+$VERSION = '1.03';
$Verbose = 0;
diff --git a/Master/tlpkg/tlperl/lib/Memoize/Storable.pm b/Master/tlpkg/tlperl/lib/Memoize/Storable.pm
index 33e35b485e1..13147972972 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/Storable.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/Storable.pm
@@ -11,7 +11,7 @@ See L<Memoize>.
=cut
use Storable ();
-$VERSION = '1.02';
+$VERSION = '1.03';
$Verbose = 0;
sub TIEHASH {