diff -Nru libhttp-browserdetect-perl-3.20/Changes libhttp-browserdetect-perl-3.21/Changes --- libhttp-browserdetect-perl-3.20/Changes 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/Changes 2019-02-05 01:50:46.000000000 +0000 @@ -1,5 +1,8 @@ Revision history for Perl extension HTTP::BrowserDetect. +3.21 2019-02-05 01:50:40Z + - Faster edge test (GH#158) (Marco Fontani) + 3.20 2018-12-04 18:37:08Z - Fix minor version warning (GH#152) (Olaf Alders) - Fix a typo in the POD. (GH#149) (gregor herrmann) diff -Nru libhttp-browserdetect-perl-3.20/cpanfile libhttp-browserdetect-perl-3.21/cpanfile --- libhttp-browserdetect-perl-3.20/cpanfile 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/cpanfile 2019-02-05 01:50:46.000000000 +0000 @@ -33,6 +33,7 @@ requires "Code::TidyAll" => "0.71"; requires "Code::TidyAll::Plugin::SortLines::Naturally" => "0.000003"; requires "Code::TidyAll::Plugin::Test::Vars" => "0.04"; + requires "Code::TidyAll::Plugin::UniqueLines" => "0.000003"; requires "Parallel::ForkManager" => "1.19"; requires "Perl::Critic" => "1.132"; requires "Perl::Tidy" => "20180220"; diff -Nru libhttp-browserdetect-perl-3.20/debian/changelog libhttp-browserdetect-perl-3.21/debian/changelog --- libhttp-browserdetect-perl-3.20/debian/changelog 2018-12-16 18:14:14.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/debian/changelog 2019-02-09 01:24:15.000000000 +0000 @@ -1,3 +1,12 @@ +libhttp-browserdetect-perl (3.21-1) unstable; urgency=medium + + * Import upstream version 3.21. + * Update years of packaging copyright. + * Declare compliance with Debian Policy 4.3.0. + * Bump debhelper compatibility level to 11. + + -- gregor herrmann Sat, 09 Feb 2019 02:24:15 +0100 + libhttp-browserdetect-perl (3.20-1) unstable; urgency=medium * Import upstream version 3.20. diff -Nru libhttp-browserdetect-perl-3.20/debian/compat libhttp-browserdetect-perl-3.21/debian/compat --- libhttp-browserdetect-perl-3.20/debian/compat 2018-12-16 18:14:14.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/debian/compat 2019-02-09 01:24:15.000000000 +0000 @@ -1 +1 @@ -10 +11 diff -Nru libhttp-browserdetect-perl-3.20/debian/control libhttp-browserdetect-perl-3.21/debian/control --- libhttp-browserdetect-perl-3.20/debian/control 2018-12-16 18:14:14.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/debian/control 2019-02-09 01:24:15.000000000 +0000 @@ -8,7 +8,7 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 10), +Build-Depends: debhelper (>= 11), perl Build-Depends-Indep: libhash-merge-perl, libjson-pp-perl (>= 2.27300), @@ -17,7 +17,7 @@ libtest-failwarnings-perl, libtest-most-perl, libtest-nowarnings-perl -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libhttp-browserdetect-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libhttp-browserdetect-perl.git Homepage: https://metacpan.org/release/HTTP-BrowserDetect diff -Nru libhttp-browserdetect-perl-3.20/debian/copyright libhttp-browserdetect-perl-3.21/debian/copyright --- libhttp-browserdetect-perl-3.20/debian/copyright 2018-12-16 18:14:14.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/debian/copyright 2019-02-09 01:24:15.000000000 +0000 @@ -9,7 +9,7 @@ Files: debian/* Copyright: 2001-2004, Ivan Kohler - 2010-2018, gregor herrmann + 2010-2019, gregor herrmann 2010-2011, Ansgar Burchardt 2010-2015, Angel Abad 2010, Jonathan Yu diff -Nru libhttp-browserdetect-perl-3.20/dist.ini libhttp-browserdetect-perl-3.21/dist.ini --- libhttp-browserdetect-perl-3.20/dist.ini 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/dist.ini 2019-02-05 01:50:46.000000000 +0000 @@ -12,3 +12,6 @@ -remove = Test::Perl::Critic -remove = Test::PodSpelling -remove = PodCoverageTests + +[Prereqs / DevelopRequires] +Code::TidyAll::Plugin::UniqueLines = 0.000003 diff -Nru libhttp-browserdetect-perl-3.20/lib/HTTP/BrowserDetect.pm libhttp-browserdetect-perl-3.21/lib/HTTP/BrowserDetect.pm --- libhttp-browserdetect-perl-3.20/lib/HTTP/BrowserDetect.pm 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/lib/HTTP/BrowserDetect.pm 2019-02-05 01:50:46.000000000 +0000 @@ -5,7 +5,7 @@ package HTTP::BrowserDetect; -our $VERSION = '3.20'; +our $VERSION = '3.21'; use vars qw(@ALL_TESTS); @@ -676,7 +676,7 @@ $browser_tests->{epiphany} = 1; } elsif ( $ua - =~ m{^mozilla/.+windows (?:nt|phone) \d{2}\.\d+;?.+ applewebkit/.+ chrome/.+ safari/.+ edge/[\d.]+$} + =~ m{^mozilla/[\d.]+ [(]windows (?:nt|phone) \d{2}\..+?[)] applewebkit/[\d.]+ [(]khtml,? like gecko[)] chrome/[\d.]+ (?:mobile )?safari/[\d.]+ edge/[\d.]+$} ) { $browser = 'edge'; $browser_string = 'Edge'; @@ -2960,7 +2960,7 @@ =head1 VERSION -version 3.20 +version 3.21 =head1 SYNOPSIS diff -Nru libhttp-browserdetect-perl-3.20/Makefile.PL libhttp-browserdetect-perl-3.21/Makefile.PL --- libhttp-browserdetect-perl-3.20/Makefile.PL 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/Makefile.PL 2019-02-05 01:50:46.000000000 +0000 @@ -34,7 +34,7 @@ "Test::Most" => 0, "Test::NoWarnings" => 0 }, - "VERSION" => "3.20", + "VERSION" => "3.21", "test" => { "TESTS" => "t/*.t" } diff -Nru libhttp-browserdetect-perl-3.20/META.json libhttp-browserdetect-perl-3.21/META.json --- libhttp-browserdetect-perl-3.20/META.json 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/META.json 2019-02-05 01:50:46.000000000 +0000 @@ -39,6 +39,7 @@ "Code::TidyAll" : "0.71", "Code::TidyAll::Plugin::SortLines::Naturally" : "0.000003", "Code::TidyAll::Plugin::Test::Vars" : "0.04", + "Code::TidyAll::Plugin::UniqueLines" : "0.000003", "Parallel::ForkManager" : "1.19", "Perl::Critic" : "1.132", "Perl::Tidy" : "20180220", @@ -89,7 +90,7 @@ "web" : "https://github.com/oalders/http-browserdetect" } }, - "version" : "3.20", + "version" : "3.21", "x_Dist_Zilla" : { "perl" : { "version" : "5.026001" @@ -433,7 +434,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.2", + "git_version" : "2.20.1", "repo_root" : "." } }, @@ -444,7 +445,7 @@ "class" : "Dist::Zilla::Plugin::Git::Contributors", "config" : { "Dist::Zilla::Plugin::Git::Contributors" : { - "git_version" : "2.19.2", + "git_version" : "2.20.1", "include_authors" : 0, "include_releaser" : 1, "order_by" : "name", @@ -552,7 +553,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.2", + "git_version" : "2.20.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -569,12 +570,12 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v3.20", + "tag" : "v3.21", "tag_format" : "v%v", "tag_message" : "v%v" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.2", + "git_version" : "2.20.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -624,7 +625,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.2", + "git_version" : "2.20.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -644,7 +645,7 @@ "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.2", + "git_version" : "2.20.1", "repo_root" : "." } }, @@ -652,6 +653,17 @@ "version" : "2.045" }, { + "class" : "Dist::Zilla::Plugin::Prereqs", + "config" : { + "Dist::Zilla::Plugin::Prereqs" : { + "phase" : "develop", + "type" : "requires" + } + }, + "name" : "DevelopRequires", + "version" : "6.012" + }, + { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", "version" : "6.012" diff -Nru libhttp-browserdetect-perl-3.20/META.yml libhttp-browserdetect-perl-3.21/META.yml --- libhttp-browserdetect-perl-3.20/META.yml 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/META.yml 2019-02-05 01:50:46.000000000 +0000 @@ -39,7 +39,7 @@ bugtracker: https://github.com/oalders/http-browserdetect/issues homepage: https://github.com/oalders/http-browserdetect repository: https://github.com/oalders/http-browserdetect.git -version: '3.20' +version: '3.21' x_Dist_Zilla: perl: version: '5.026001' @@ -308,7 +308,7 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.2 + git_version: 2.20.1 repo_root: . name: '@Author::OALDERS/Git::Check' version: '2.045' @@ -316,7 +316,7 @@ class: Dist::Zilla::Plugin::Git::Contributors config: Dist::Zilla::Plugin::Git::Contributors: - git_version: 2.19.2 + git_version: 2.20.1 include_authors: 0 include_releaser: 1 order_by: name @@ -399,7 +399,7 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.2 + git_version: 2.20.1 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local @@ -412,11 +412,11 @@ branch: ~ changelog: Changes signed: 0 - tag: v3.20 + tag: v3.21 tag_format: v%v tag_message: v%v Dist::Zilla::Role::Git::Repo: - git_version: 2.19.2 + git_version: 2.20.1 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local @@ -453,7 +453,7 @@ - (?^:^lib/.*\.pm$) changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.2 + git_version: 2.20.1 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local @@ -467,11 +467,19 @@ - origin remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: - git_version: 2.19.2 + git_version: 2.20.1 repo_root: . name: '@Author::OALDERS/Git::Push' version: '2.045' - + class: Dist::Zilla::Plugin::Prereqs + config: + Dist::Zilla::Plugin::Prereqs: + phase: develop + type: requires + name: DevelopRequires + version: '6.012' + - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' version: '6.012' diff -Nru libhttp-browserdetect-perl-3.20/README.md libhttp-browserdetect-perl-3.21/README.md --- libhttp-browserdetect-perl-3.20/README.md 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/README.md 2019-02-05 01:50:46.000000000 +0000 @@ -4,7 +4,7 @@ # VERSION -version 3.20 +version 3.21 # SYNOPSIS diff -Nru libhttp-browserdetect-perl-3.20/t/00-report-prereqs.dd libhttp-browserdetect-perl-3.21/t/00-report-prereqs.dd --- libhttp-browserdetect-perl-3.20/t/00-report-prereqs.dd 2018-12-04 18:37:13.000000000 +0000 +++ libhttp-browserdetect-perl-3.21/t/00-report-prereqs.dd 2019-02-05 01:50:46.000000000 +0000 @@ -15,6 +15,7 @@ 'Code::TidyAll' => '0.71', 'Code::TidyAll::Plugin::SortLines::Naturally' => '0.000003', 'Code::TidyAll::Plugin::Test::Vars' => '0.04', + 'Code::TidyAll::Plugin::UniqueLines' => '0.000003', 'Parallel::ForkManager' => '1.19', 'Perl::Critic' => '1.132', 'Perl::Tidy' => '20180220',