diff -Nru libcourriel-perl-0.46/Changes libcourriel-perl-0.47/Changes --- libcourriel-perl-0.46/Changes 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/Changes 2018-05-20 16:34:02.000000000 +0000 @@ -1,3 +1,8 @@ +0.47 2018-05-20 + +- Switched to using GitHub for issue tracking. + + 0.46 2018-05-13 - Replaced all use of Email::Address with Email::Address::XS, as the former is diff -Nru libcourriel-perl-0.46/CONTRIBUTING.md libcourriel-perl-0.47/CONTRIBUTING.md --- libcourriel-perl-0.46/CONTRIBUTING.md 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/CONTRIBUTING.md 2018-05-20 16:34:02.000000000 +0000 @@ -96,8 +96,8 @@ https://help.github.com/articles/creating-a-pull-request If you have found a bug, but do not have an accompanying patch to fix it, you -can submit an issue report [via the web](http://rt.cpan.org/Public/Dist/Display.html?Name=Courriel) -or [via email](bug-courriel@rt.cpan.org. +can submit an issue report [via the web](https://github.com/houseabsolute/Courriel/issues) +). This is a good place to send your questions about the usage of this distribution. ## Travis diff -Nru libcourriel-perl-0.46/debian/changelog libcourriel-perl-0.47/debian/changelog --- libcourriel-perl-0.46/debian/changelog 2018-05-14 04:44:42.000000000 +0000 +++ libcourriel-perl-0.47/debian/changelog 2018-05-22 04:39:26.000000000 +0000 @@ -1,3 +1,10 @@ +libcourriel-perl (0.47-1) unstable; urgency=medium + + * Import upstream version 0.47 + * Replace issue tracking link by GitHub + + -- Xavier Guimard Tue, 22 May 2018 06:39:26 +0200 + libcourriel-perl (0.46-1) unstable; urgency=medium [ Damyan Ivanov ] diff -Nru libcourriel-perl-0.46/debian/upstream/metadata libcourriel-perl-0.47/debian/upstream/metadata --- libcourriel-perl-0.46/debian/upstream/metadata 2018-05-14 04:44:42.000000000 +0000 +++ libcourriel-perl-0.47/debian/upstream/metadata 2018-05-22 04:39:26.000000000 +0000 @@ -1,7 +1,7 @@ --- Archive: CPAN -Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=Courriel -Bug-Submit: bug-courriel@rt.cpan.org +Bug-Database: https://github.com/houseabsolute/Courriel/issues +Bug-Submit: https://github.com/houseabsolute/Courriel/issues Contact: Dave Rolsky Name: Courriel Repository: https://github.com/houseabsolute/Courriel.git diff -Nru libcourriel-perl-0.46/dist.ini libcourriel-perl-0.47/dist.ini --- libcourriel-perl-0.46/dist.ini 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/dist.ini 2018-05-20 16:34:02.000000000 +0000 @@ -38,6 +38,7 @@ stopwords = multipart stopwords = utf stopwords = zh +use_github_issues = 1 Test::CleanNamespaces.skip = ^Courriel::(?:Builder|Helpers)$ ; some of the test code intentionally has trailing whitespace -remove = Test::EOL diff -Nru libcourriel-perl-0.46/lib/Courriel/Builder.pm libcourriel-perl-0.47/lib/Courriel/Builder.pm --- libcourriel-perl-0.46/lib/Courriel/Builder.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Builder.pm 2018-05-20 16:34:02.000000000 +0000 @@ -3,7 +3,7 @@ use strict; use warnings; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Carp qw( croak ); use Courriel; @@ -452,7 +452,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -706,7 +706,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Header/ContentType.pm libcourriel-perl-0.47/lib/Courriel/Header/ContentType.pm --- libcourriel-perl-0.46/lib/Courriel/Header/ContentType.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Header/ContentType.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Types qw( Maybe NonEmptyStr ); @@ -96,7 +96,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -227,7 +227,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Header/Disposition.pm libcourriel-perl-0.47/lib/Courriel/Header/Disposition.pm --- libcourriel-perl-0.46/lib/Courriel/Header/Disposition.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Header/Disposition.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Types qw( Bool Maybe NonEmptyStr ); use DateTime; @@ -114,7 +114,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -256,7 +256,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/HeaderAttribute.pm libcourriel-perl-0.47/lib/Courriel/HeaderAttribute.pm --- libcourriel-perl-0.46/lib/Courriel/HeaderAttribute.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/HeaderAttribute.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::HeaderAttribute; use Courriel::Helpers qw( quote_and_escape_attribute_value ); @@ -189,7 +189,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -269,7 +269,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Header.pm libcourriel-perl-0.47/lib/Courriel/Header.pm --- libcourriel-perl-0.46/lib/Courriel/Header.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Header.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Helpers qw( fold_header ); use Courriel::Types qw( NonEmptyStr Str Streamable ); @@ -255,7 +255,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -306,7 +306,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Headers.pm libcourriel-perl-0.47/lib/Courriel/Headers.pm --- libcourriel-perl-0.46/lib/Courriel/Headers.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Headers.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Header; use Courriel::Header::ContentType; @@ -485,7 +485,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -618,7 +618,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Helpers.pm libcourriel-perl-0.47/lib/Courriel/Helpers.pm --- libcourriel-perl-0.46/lib/Courriel/Helpers.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Helpers.pm 2018-05-20 16:34:02.000000000 +0000 @@ -3,7 +3,7 @@ use strict; use warnings; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Encode qw( decode ); use Exporter qw( import ); diff -Nru libcourriel-perl-0.46/lib/Courriel/Part/Multipart.pm libcourriel-perl-0.47/lib/Courriel/Part/Multipart.pm --- libcourriel-perl-0.46/lib/Courriel/Part/Multipart.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Part/Multipart.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::HeaderAttribute; use Courriel::Helpers qw( unique_boundary ); @@ -122,7 +122,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -240,7 +240,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Part/Single.pm libcourriel-perl-0.47/lib/Courriel/Part/Single.pm --- libcourriel-perl-0.46/lib/Courriel/Part/Single.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Part/Single.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Header::Disposition; use Courriel::Types qw( NonEmptyStr StringRef ); @@ -208,7 +208,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -359,7 +359,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Courriel/Role/HeaderWithAttributes.pm libcourriel-perl-0.47/lib/Courriel/Role/HeaderWithAttributes.pm --- libcourriel-perl-0.46/lib/Courriel/Role/HeaderWithAttributes.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Role/HeaderWithAttributes.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::HeaderAttribute; use Courriel::Helpers qw( parse_header_with_attributes ); diff -Nru libcourriel-perl-0.46/lib/Courriel/Role/Part.pm libcourriel-perl-0.47/lib/Courriel/Role/Part.pm --- libcourriel-perl-0.46/lib/Courriel/Role/Part.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Role/Part.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Header::ContentType; use Courriel::Header::Disposition; diff -Nru libcourriel-perl-0.46/lib/Courriel/Role/Streams.pm libcourriel-perl-0.47/lib/Courriel/Role/Streams.pm --- libcourriel-perl-0.46/lib/Courriel/Role/Streams.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Role/Streams.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Types qw( Streamable ); use Params::ValidationCompiler qw( validation_for ); diff -Nru libcourriel-perl-0.46/lib/Courriel/Types/Internal.pm libcourriel-perl-0.47/lib/Courriel/Types/Internal.pm --- libcourriel-perl-0.46/lib/Courriel/Types/Internal.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Types/Internal.pm 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use List::AllUtils qw( all ); use Scalar::Util qw( blessed ); diff -Nru libcourriel-perl-0.46/lib/Courriel/Types.pm libcourriel-perl-0.47/lib/Courriel/Types.pm --- libcourriel-perl-0.46/lib/Courriel/Types.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel/Types.pm 2018-05-20 16:34:02.000000000 +0000 @@ -6,7 +6,7 @@ use parent 'MooseX::Types::Combine'; -our $VERSION = '0.46'; +our $VERSION = '0.47'; __PACKAGE__->provide_types_from( qw( diff -Nru libcourriel-perl-0.46/lib/Courriel.pm libcourriel-perl-0.47/lib/Courriel.pm --- libcourriel-perl-0.46/lib/Courriel.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Courriel.pm 2018-05-20 16:34:02.000000000 +0000 @@ -6,7 +6,7 @@ use warnings; use namespace::autoclean; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel::Headers; use Courriel::Helpers qw( unique_boundary ); @@ -532,7 +532,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 SYNOPSIS @@ -789,7 +789,7 @@ then you'll automatically be notified of progress on your bug as I make changes. -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/lib/Email/Abstract/Courriel.pm libcourriel-perl-0.47/lib/Email/Abstract/Courriel.pm --- libcourriel-perl-0.46/lib/Email/Abstract/Courriel.pm 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/lib/Email/Abstract/Courriel.pm 2018-05-20 16:34:02.000000000 +0000 @@ -3,7 +3,7 @@ use strict; use warnings; -our $VERSION = '0.46'; +our $VERSION = '0.47'; use Courriel; @@ -59,7 +59,7 @@ =head1 VERSION -version 0.46 +version 0.47 =head1 DESCRIPTION @@ -72,7 +72,7 @@ =head1 SUPPORT -Bugs may be submitted at L or via email to L. +Bugs may be submitted at L. I am also usually active on IRC as 'autarch' on C. diff -Nru libcourriel-perl-0.46/Makefile.PL libcourriel-perl-0.47/Makefile.PL --- libcourriel-perl-0.46/Makefile.PL 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/Makefile.PL 2018-05-20 16:34:02.000000000 +0000 @@ -62,7 +62,7 @@ "Test::Warnings" => 0, "utf8" => 0 }, - "VERSION" => "0.46", + "VERSION" => "0.47", "test" => { "TESTS" => "t/*.t" } diff -Nru libcourriel-perl-0.46/META.json libcourriel-perl-0.47/META.json --- libcourriel-perl-0.46/META.json 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/META.json 2018-05-20 16:34:02.000000000 +0000 @@ -107,74 +107,73 @@ "provides" : { "Courriel" : { "file" : "lib/Courriel.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Builder" : { "file" : "lib/Courriel/Builder.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Header" : { "file" : "lib/Courriel/Header.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Header::ContentType" : { "file" : "lib/Courriel/Header/ContentType.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Header::Disposition" : { "file" : "lib/Courriel/Header/Disposition.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::HeaderAttribute" : { "file" : "lib/Courriel/HeaderAttribute.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Headers" : { "file" : "lib/Courriel/Headers.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Helpers" : { "file" : "lib/Courriel/Helpers.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Part::Multipart" : { "file" : "lib/Courriel/Part/Multipart.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Part::Single" : { "file" : "lib/Courriel/Part/Single.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Role::HeaderWithAttributes" : { "file" : "lib/Courriel/Role/HeaderWithAttributes.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Role::Part" : { "file" : "lib/Courriel/Role/Part.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Role::Streams" : { "file" : "lib/Courriel/Role/Streams.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Types" : { "file" : "lib/Courriel/Types.pm", - "version" : "0.46" + "version" : "0.47" }, "Courriel::Types::Internal" : { "file" : "lib/Courriel/Types/Internal.pm", - "version" : "0.46" + "version" : "0.47" }, "Email::Abstract::Courriel" : { "file" : "lib/Email/Abstract/Courriel.pm", - "version" : "0.46" + "version" : "0.47" } }, "release_status" : "stable", "resources" : { "bugtracker" : { - "mailto" : "bug-courriel@rt.cpan.org", - "web" : "http://rt.cpan.org/Public/Dist/Display.html?Name=Courriel" + "web" : "https://github.com/houseabsolute/Courriel/issues" }, "homepage" : "http://metacpan.org/release/Courriel", "repository" : { @@ -183,7 +182,7 @@ "web" : "https://github.com/houseabsolute/Courriel" } }, - "version" : "0.46", + "version" : "0.47", "x_Dist_Zilla" : { "perl" : { "version" : "5.026002" @@ -923,7 +922,7 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v0.46", + "tag" : "v0.47", "tag_format" : "v%v", "tag_message" : "v%v" }, diff -Nru libcourriel-perl-0.46/META.yml libcourriel-perl-0.47/META.yml --- libcourriel-perl-0.46/META.yml 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/META.yml 2018-05-20 16:34:02.000000000 +0000 @@ -24,52 +24,52 @@ provides: Courriel: file: lib/Courriel.pm - version: '0.46' + version: '0.47' Courriel::Builder: file: lib/Courriel/Builder.pm - version: '0.46' + version: '0.47' Courriel::Header: file: lib/Courriel/Header.pm - version: '0.46' + version: '0.47' Courriel::Header::ContentType: file: lib/Courriel/Header/ContentType.pm - version: '0.46' + version: '0.47' Courriel::Header::Disposition: file: lib/Courriel/Header/Disposition.pm - version: '0.46' + version: '0.47' Courriel::HeaderAttribute: file: lib/Courriel/HeaderAttribute.pm - version: '0.46' + version: '0.47' Courriel::Headers: file: lib/Courriel/Headers.pm - version: '0.46' + version: '0.47' Courriel::Helpers: file: lib/Courriel/Helpers.pm - version: '0.46' + version: '0.47' Courriel::Part::Multipart: file: lib/Courriel/Part/Multipart.pm - version: '0.46' + version: '0.47' Courriel::Part::Single: file: lib/Courriel/Part/Single.pm - version: '0.46' + version: '0.47' Courriel::Role::HeaderWithAttributes: file: lib/Courriel/Role/HeaderWithAttributes.pm - version: '0.46' + version: '0.47' Courriel::Role::Part: file: lib/Courriel/Role/Part.pm - version: '0.46' + version: '0.47' Courriel::Role::Streams: file: lib/Courriel/Role/Streams.pm - version: '0.46' + version: '0.47' Courriel::Types: file: lib/Courriel/Types.pm - version: '0.46' + version: '0.47' Courriel::Types::Internal: file: lib/Courriel/Types/Internal.pm - version: '0.46' + version: '0.47' Email::Abstract::Courriel: file: lib/Email/Abstract/Courriel.pm - version: '0.46' + version: '0.47' requires: Carp: '0' DateTime: '0' @@ -106,10 +106,10 @@ strict: '0' warnings: '0' resources: - bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=Courriel + bugtracker: https://github.com/houseabsolute/Courriel/issues homepage: http://metacpan.org/release/Courriel repository: git://github.com/houseabsolute/Courriel.git -version: '0.46' +version: '0.47' x_Dist_Zilla: perl: version: '5.026002' @@ -686,7 +686,7 @@ branch: ~ changelog: Changes signed: 0 - tag: v0.46 + tag: v0.47 tag_format: v%v tag_message: v%v Dist::Zilla::Role::Git::Repo: diff -Nru libcourriel-perl-0.46/README.md libcourriel-perl-0.47/README.md --- libcourriel-perl-0.46/README.md 2018-05-13 20:00:18.000000000 +0000 +++ libcourriel-perl-0.47/README.md 2018-05-20 16:34:02.000000000 +0000 @@ -4,7 +4,7 @@ # VERSION -version 0.46 +version 0.47 # SYNOPSIS @@ -257,7 +257,7 @@ then you'll automatically be notified of progress on your bug as I make changes. -Bugs may be submitted at [http://rt.cpan.org/Public/Dist/Display.html?Name=Courriel](http://rt.cpan.org/Public/Dist/Display.html?Name=Courriel) or via email to [bug-courriel@rt.cpan.org](mailto:bug-courriel@rt.cpan.org). +Bugs may be submitted at [https://github.com/houseabsolute/Courriel/issues](https://github.com/houseabsolute/Courriel/issues). I am also usually active on IRC as 'autarch' on `irc://irc.perl.org`.