From: Tomas Doran Date: Mon, 16 Apr 2012 08:07:32 +0000 (+0100) Subject: Fix META.yml author, add x_authority X-Git-Tag: 5.90012~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=57746b806ef4de802abec0c4a38a9524eb359661 Fix META.yml author, add x_authority --- diff --git a/Changes b/Changes index c13291d..71cf9bf 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 01cdaff..e502713 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';