},
},
+ # Jerry Hedden does take patches that are applied to blead first, even
+ # though that can be hard to discern from the Git history; so it's
+ # correct for this (and Thread::Semaphore, threads, and threads::shared)
+ # to be under dist/ rather than cpan/
'Thread::Queue' => {
- 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.04.tar.gz',
+ 'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.05.tar.gz',
'FILES' => q[dist/Thread-Queue],
'EXCLUDED' => [
qr{^examples/},
use strict;
use warnings;
-our $VERSION = '3.04';
+our $VERSION = '3.05';
$VERSION = eval $VERSION;
use threads::shared 1.21;
require Carp;
my ($method) = (caller(1))[3];
my $class_name = ref($self);
- $method =~ s/$class_name:://;
+ $method =~ s/$class_name\:://;
$index = 'undef' if (! defined($index));
Carp::croak("Invalid 'index' argument ($index) to '$method' method");
}
require Carp;
my ($method) = (caller(1))[3];
my $class_name = ref($self);
- $method =~ s/$class_name:://;
+ $method =~ s/$class_name\:://;
$count = 'undef' if (! defined($count));
Carp::croak("Invalid 'count' argument ($count) to '$method' method");
}
require Carp;
my ($method) = (caller(1))[3];
my $class_name = ref($self);
- $method =~ s/$class_name:://;
+ $method =~ s/$class_name\:://;
$timeout = 'undef' if (! defined($timeout));
Carp::croak("Invalid 'timeout' argument ($timeout) to '$method' method");
}
=head1 VERSION
-This document describes Thread::Queue version 3.04
+This document describes Thread::Queue version 3.05
=head1 SYNOPSIS