diff -Nru libstring-toidentifier-en-perl-0.10/Changes libstring-toidentifier-en-perl-0.11/Changes --- libstring-toidentifier-en-perl-0.10/Changes 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/Changes 2013-08-27 23:00:50.000000000 +0000 @@ -1,5 +1,8 @@ Revision history for String::ToIdentifier::EN +0.11 2013-08-27 19:00:41 + - POD typo fixes from dsteinbrunner #1 + 0.10 2013-06-10 00:22:12 - convert to dzil - add =encoding UTF-8 to ::Unicode POD (RT#85981) diff -Nru libstring-toidentifier-en-perl-0.10/META.json libstring-toidentifier-en-perl-0.11/META.json --- libstring-toidentifier-en-perl-0.10/META.json 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/META.json 2013-08-27 23:00:50.000000000 +0000 @@ -4,7 +4,7 @@ "Rafael Kitover " ], "dynamic_config" : 0, - "generated_by" : "Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921", + "generated_by" : "Dist::Zilla version 4.300036, CPAN::Meta::Converter version 2.131560", "license" : [ "perl_5" ], @@ -47,6 +47,7 @@ "File::Find" : "0", "File::Temp" : "0", "Test::More" : "0", + "lib" : "0", "utf8" : "0" } } @@ -67,7 +68,7 @@ "web" : "http://github.com/rkitover/string-toidentifier-en" } }, - "version" : "0.10", + "version" : "0.11", "x_authority" : "cpan:RKITOVER" } diff -Nru libstring-toidentifier-en-perl-0.10/META.yml libstring-toidentifier-en-perl-0.11/META.yml --- libstring-toidentifier-en-perl-0.10/META.yml 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/META.yml 2013-08-27 23:00:50.000000000 +0000 @@ -6,11 +6,12 @@ File::Find: 0 File::Temp: 0 Test::More: 0 + lib: 0 utf8: 0 configure_requires: ExtUtils::MakeMaker: 6.30 dynamic_config: 0 -generated_by: 'Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921' +generated_by: 'Dist::Zilla version 4.300036, CPAN::Meta::Converter version 2.131560' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -34,5 +35,5 @@ homepage: http://metacpan.org/release/String-ToIdentifier-EN license: http://dev.perl.org/licenses/ repository: git://github.com/rkitover/string-toidentifier-en.git -version: 0.10 +version: 0.11 x_authority: cpan:RKITOVER diff -Nru libstring-toidentifier-en-perl-0.10/Makefile.PL libstring-toidentifier-en-perl-0.11/Makefile.PL --- libstring-toidentifier-en-perl-0.10/Makefile.PL 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/Makefile.PL 2013-08-27 23:00:50.000000000 +0000 @@ -11,12 +11,7 @@ my %WriteMakefileArgs = ( "ABSTRACT" => "Convert Strings to English Program Identifiers", "AUTHOR" => "Rafael Kitover ", - "BUILD_REQUIRES" => { - "File::Find" => 0, - "File::Temp" => 0, - "Test::More" => 0, - "utf8" => 0 - }, + "BUILD_REQUIRES" => {}, "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => "6.30" }, @@ -34,13 +29,33 @@ "strict" => 0, "warnings" => 0 }, - "VERSION" => "0.10", + "TEST_REQUIRES" => { + "File::Find" => 0, + "File::Temp" => 0, + "Test::More" => 0, + "lib" => 0, + "utf8" => 0 + }, + "VERSION" => "0.11", "test" => { "TESTS" => "t/*.t" } ); +unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { + my $tr = delete $WriteMakefileArgs{TEST_REQUIRES}; + my $br = $WriteMakefileArgs{BUILD_REQUIRES}; + for my $mod ( keys %$tr ) { + if ( exists $br->{$mod} ) { + $br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod}; + } + else { + $br->{$mod} = $tr->{$mod}; + } + } +} + unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) { my $br = delete $WriteMakefileArgs{BUILD_REQUIRES}; my $pp = $WriteMakefileArgs{PREREQ_PM}; diff -Nru libstring-toidentifier-en-perl-0.10/README libstring-toidentifier-en-perl-0.11/README --- libstring-toidentifier-en-perl-0.10/README 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/README 2013-08-27 23:00:50.000000000 +0000 @@ -72,7 +72,7 @@ SUPPORT - More information on this module is availableat: + More information on this module is available at: * RT: CPAN's request tracker (report bugs here) diff -Nru libstring-toidentifier-en-perl-0.10/debian/changelog libstring-toidentifier-en-perl-0.11/debian/changelog --- libstring-toidentifier-en-perl-0.10/debian/changelog 2013-06-10 15:31:15.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/debian/changelog 2013-10-11 20:48:38.000000000 +0000 @@ -1,3 +1,10 @@ +libstring-toidentifier-en-perl (0.11-1) unstable; urgency=low + + * Team upload. + * New upstream release. + + -- gregor herrmann Fri, 11 Oct 2013 22:48:28 +0200 + libstring-toidentifier-en-perl (0.10-1) unstable; urgency=low * Team upload. diff -Nru libstring-toidentifier-en-perl-0.10/debian/copyright libstring-toidentifier-en-perl-0.11/debian/copyright --- libstring-toidentifier-en-perl-0.10/debian/copyright 2013-06-10 15:31:15.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/debian/copyright 2013-10-11 20:48:38.000000000 +0000 @@ -26,4 +26,3 @@ . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. - diff -Nru libstring-toidentifier-en-perl-0.10/lib/String/ToIdentifier/EN/Unicode.pm libstring-toidentifier-en-perl-0.11/lib/String/ToIdentifier/EN/Unicode.pm --- libstring-toidentifier-en-perl-0.10/lib/String/ToIdentifier/EN/Unicode.pm 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/lib/String/ToIdentifier/EN/Unicode.pm 2013-08-27 23:00:50.000000000 +0000 @@ -3,7 +3,7 @@ $String::ToIdentifier::EN::Unicode::AUTHORITY = 'cpan:RKITOVER'; } { - $String::ToIdentifier::EN::Unicode::VERSION = '0.10'; + $String::ToIdentifier::EN::Unicode::VERSION = '0.11'; } use strict; @@ -74,7 +74,7 @@ =head1 SUPPORT -More information on this module is availableat: +More information on this module is available at: =over 4 diff -Nru libstring-toidentifier-en-perl-0.10/lib/String/ToIdentifier/EN.pm libstring-toidentifier-en-perl-0.11/lib/String/ToIdentifier/EN.pm --- libstring-toidentifier-en-perl-0.10/lib/String/ToIdentifier/EN.pm 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/lib/String/ToIdentifier/EN.pm 2013-08-27 23:00:50.000000000 +0000 @@ -3,7 +3,7 @@ $String::ToIdentifier::EN::AUTHORITY = 'cpan:RKITOVER'; } { - $String::ToIdentifier::EN::VERSION = '0.10'; + $String::ToIdentifier::EN::VERSION = '0.11'; } use 5.008001; @@ -312,7 +312,7 @@ =head1 SUPPORT -More information on this module is availableat: +More information on this module is available at: =over 4 diff -Nru libstring-toidentifier-en-perl-0.10/t/00-compile.t libstring-toidentifier-en-perl-0.11/t/00-compile.t --- libstring-toidentifier-en-perl-0.10/t/00-compile.t 2013-06-10 04:22:21.000000000 +0000 +++ libstring-toidentifier-en-perl-0.11/t/00-compile.t 2013-08-27 23:00:50.000000000 +0000 @@ -70,4 +70,5 @@ script_compiles( $file, "$script script compiles" ); } } + }