diff -Nru libmoo-perl-2.004003/Changes libmoo-perl-2.004004/Changes --- libmoo-perl-2.004003/Changes 2020-11-21 04:04:25.000000000 +0000 +++ libmoo-perl-2.004004/Changes 2020-11-25 00:58:12.000000000 +0000 @@ -1,5 +1,8 @@ Revision history for Moo +2.004004 - 2020-11-25 + - fix error location test when using core Carp on perl 5.8.9 - 5.10.1 + 2.004003 - 2020-11-21 - fix extraneous MANIFEST entry diff -Nru libmoo-perl-2.004003/debian/changelog libmoo-perl-2.004004/debian/changelog --- libmoo-perl-2.004003/debian/changelog 2020-11-23 18:38:26.000000000 +0000 +++ libmoo-perl-2.004004/debian/changelog 2020-11-27 01:10:21.000000000 +0000 @@ -1,3 +1,10 @@ +libmoo-perl (2.004004-1) unstable; urgency=medium + + * Team upload. + * Import upstream version 2.004004. + + -- gregor herrmann Fri, 27 Nov 2020 02:10:21 +0100 + libmoo-perl (2.004003-1) unstable; urgency=medium * Team upload. diff -Nru libmoo-perl-2.004003/lib/Moo/Role.pm libmoo-perl-2.004004/lib/Moo/Role.pm --- libmoo-perl-2.004003/lib/Moo/Role.pm 2020-11-21 04:03:06.000000000 +0000 +++ libmoo-perl-2.004004/lib/Moo/Role.pm 2020-11-25 00:58:08.000000000 +0000 @@ -25,7 +25,7 @@ ); } -our $VERSION = '2.004003'; +our $VERSION = '2.004004'; $VERSION =~ tr/_//d; require Moo::sification; diff -Nru libmoo-perl-2.004003/lib/Moo.pm libmoo-perl-2.004004/lib/Moo.pm --- libmoo-perl-2.004003/lib/Moo.pm 2020-11-21 04:03:06.000000000 +0000 +++ libmoo-perl-2.004004/lib/Moo.pm 2020-11-25 00:58:08.000000000 +0000 @@ -24,7 +24,7 @@ ); } -our $VERSION = '2.004003'; +our $VERSION = '2.004004'; $VERSION =~ tr/_//d; require Moo::sification; diff -Nru libmoo-perl-2.004003/META.json libmoo-perl-2.004004/META.json --- libmoo-perl-2.004003/META.json 2020-11-21 04:05:20.000000000 +0000 +++ libmoo-perl-2.004004/META.json 2020-11-25 00:59:02.000000000 +0000 @@ -86,7 +86,7 @@ }, "x_IRC" : "irc://irc.perl.org/#moose" }, - "version" : "2.004003", + "version" : "2.004004", "x_authority" : "cpan:MSTROUT", "x_breaks" : { "App::Commando" : "<= 0.012", diff -Nru libmoo-perl-2.004003/META.yml libmoo-perl-2.004004/META.yml --- libmoo-perl-2.004003/META.yml 2020-11-21 04:05:17.000000000 +0000 +++ libmoo-perl-2.004004/META.yml 2020-11-25 00:59:01.000000000 +0000 @@ -35,7 +35,7 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Moo license: https://dev.perl.org/licenses/ repository: https://github.com/moose/Moo.git -version: '2.004003' +version: '2.004004' x_authority: cpan:MSTROUT x_breaks: App::Commando: '<= 0.012' diff -Nru libmoo-perl-2.004003/t/lib/ErrorLocation.pm libmoo-perl-2.004004/t/lib/ErrorLocation.pm --- libmoo-perl-2.004003/t/lib/ErrorLocation.pm 2020-09-02 10:16:19.000000000 +0000 +++ libmoo-perl-2.004004/t/lib/ErrorLocation.pm 2020-11-24 15:49:23.000000000 +0000 @@ -3,6 +3,7 @@ use Test::Builder; use Carp qw(croak); use Exporter 'import'; +use Carp::Heavy (); our @EXPORT = qw(location_ok);