summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-01-25 09:39:20 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-01-25 11:10:39 +0000
commitb34385a668b1275a17bd3e8d94e6c6decb78edf5 (patch)
treed21e0ee7d173203bcafdf763beb76e5d0d0539a8
parent0ba19efb0320c86f95c24abdad9fa7a6456463e6 (diff)
downloadperl-b34385a668b1275a17bd3e8d94e6c6decb78edf5.tar.gz
Update DB_File to CPAN version 1.826
[DELTA] 1.826 25 Jan 2012 * t/db-btree.t - fix use of "length @array" [RT ##74336]
-rwxr-xr-xPorting/Maintainers.pl4
-rw-r--r--cpan/DB_File/Changes5
-rw-r--r--cpan/DB_File/DB_File.pm2
-rw-r--r--cpan/DB_File/t/db-btree.t2
-rw-r--r--pod/perldelta.pod2
5 files changed, 10 insertions, 5 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index a2e8d2fa98..b1108668eb 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -511,7 +511,7 @@ use File::Glob qw(:case);
'DB_File' => {
'MAINTAINER' => 'pmqs',
- 'DISTRIBUTION' => 'PMQS/DB_File-1.825.tar.gz',
+ 'DISTRIBUTION' => 'PMQS/DB_File-1.826.tar.gz',
'FILES' => q[cpan/DB_File],
'EXCLUDED' => [
qr{^patches/},
@@ -520,7 +520,7 @@ use File::Glob qw(:case);
fallback.xs
),
],
- 'UPSTREAM' => undef,
+ 'UPSTREAM' => 'cpan',
},
'DBM_Filter' => {
diff --git a/cpan/DB_File/Changes b/cpan/DB_File/Changes
index 577ecb2972..200ff17f58 100644
--- a/cpan/DB_File/Changes
+++ b/cpan/DB_File/Changes
@@ -1,3 +1,8 @@
+1.826 25 Jan 2012
+
+ * t/db-btree.t - fix use of "length @array"
+ [RT ##74336]
+
1.825 24 Jan 2012
* t/db-btree.t - fix use of "length @array"
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 4f41f59411..6b7dc103ef 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -165,7 +165,7 @@ our ($db_version, $use_XSLoader, $splice_end_array_no_length, $splice_end_array,
use Carp;
-$VERSION = "1.825" ;
+$VERSION = "1.826" ;
$VERSION = eval $VERSION; # needed for dev releases
{
diff --git a/cpan/DB_File/t/db-btree.t b/cpan/DB_File/t/db-btree.t
index 678393bf84..fb89a40855 100644
--- a/cpan/DB_File/t/db-btree.t
+++ b/cpan/DB_File/t/db-btree.t
@@ -566,7 +566,7 @@ sub ArrayCompare
return 0 if @$a != @$b ;
- foreach (1 .. @$a - 1)
+ foreach (0 .. @$a - 1)
{
return 0 unless $$a[$_] eq $$b[$_];
}
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 28d327c455..bff6b17433 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -113,7 +113,7 @@ XXX
=item *
-L<DB_File> has been upgraded from version 1.824 to version 1.825.
+L<DB_File> has been upgraded from version 1.824 to version 1.826.
=item *