Imager release history. Older releases can be found in Changes.old
+Imager 0.68 - unrelease
+===========
+
+Bug fixes:
+
+ - avoid using CHECK as a label in Imager::Test
+ http://nntp.x.perl.org/group/perl.cpan.testers/5220921
+
Imager 0.67_01 - 02 Sep 2009
==============
if ($limit == 0) {
# find the first mismatch
- CHECK:
+ PIXELS:
for my $y (0 .. $left->getheight()-1) {
for my $x (0.. $left->getwidth()-1) {
my @lsamples = $left->getsamples(x => $x, y => $y, width => 1);
my @rsamples = $right->getsamples(x => $x, y => $y, width => 1);
if ("@lsamples" ne "@rsamples") {
$builder->diag("first mismatch at ($x, $y) - @lsamples vs @rsamples");
- last CHECK;
+ last PIXELS;
}
}
}