diff --git a/Changes b/Changes index c13291d0c..71cf9bf01 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ # This file documents the revision history for Perl extension Catalyst. + Distribution META.yml changes: + - author key is now correct, rather than what Module::Install + mis-parses from the documentation. + - x_authority key added. + Bug fixes: - Fix request body parameters being multiply rebuilt. Fixes both RT#75607 and CatalystX::DebugFilter diff --git a/Makefile.PL b/Makefile.PL index 01cdaff42..e5027135c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,10 +7,13 @@ use inc::Module::Install 0.91; use Module::Install::AuthorRequires; use Module::Install::CheckConflicts; use Module::Install::AuthorTests; +use Module::Install::Authority; perl_version '5.008003'; name 'Catalyst-Runtime'; +author 'Sebastian Riedel '; +authority 'MSTROUT'; all_from 'lib/Catalyst/Runtime.pm'; requires 'List::MoreUtils';