From: Marcus Ramberg Date: Wed, 10 Aug 2005 13:38:07 +0000 (+0000) Subject: released 5.33 X-Git-Tag: 5.7099_04~1251 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=4e449be9da4752d56373a9d9e11fa3e9558ad1dc released 5.33 --- diff --git a/Changes b/Changes index 3f9b5e3..7b4faf1 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,9 @@ This file documents the revision history for Perl extension Catalyst. -5.32 2005-xx-xx xx:xx:00 - - Dispatcher might fail if object returns false. +5.33 2005-08-10 15:25:00 + - Now with updated manifest. +5.32 2005-08-10 15:10:00 + - Dispatcher might fail if object returns false. (Florian Ragwitz) 5.31 2005-06-04 12:35:00 diff --git a/MANIFEST b/MANIFEST index 8a59948..12f94be 100644 --- a/MANIFEST +++ b/MANIFEST @@ -40,6 +40,7 @@ lib/Catalyst/Manual/Plugins.pod lib/Catalyst/Manual/SuccessStories.pod lib/Catalyst/Manual/Troubleshooting.pod lib/Catalyst/Manual/Tutorial.pod +lib/Catalyst/Manual/WritingPlugins.pod lib/Catalyst/Request.pm lib/Catalyst/Request/Upload.pm lib/Catalyst/Response.pm @@ -74,6 +75,7 @@ t/engine/response/errors.t t/engine/response/headers.t t/engine/response/redirect.t t/engine/response/status.t +t/engine/setup/basics.t t/lib/Catalyst/Plugin/Test/Errors.pm t/lib/Catalyst/Plugin/Test/Headers.pm t/lib/TestApp.pm @@ -96,6 +98,7 @@ t/lib/TestApp/Controller/Engine/Response/Headers.pm t/lib/TestApp/Controller/Engine/Response/Redirect.pm t/lib/TestApp/Controller/Engine/Response/Status.pm t/lib/TestApp/View/Dump.pm +t/lib/TestApp/View/Dump/False.pm t/lib/TestApp/View/Dump/Parameters.pm t/lib/TestApp/View/Dump/Request.pm t/lib/TestApp/View/Dump/Response.pm diff --git a/META.yml b/META.yml index 33fbde6..a4b233a 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- name: Catalyst -version: 5.30 +version: 5.33 author: - 'Sebastian Riedel, C' abstract: The Elegant MVC Web Application Framework @@ -28,7 +28,7 @@ requires: provides: Catalyst: file: lib/Catalyst.pm - version: 5.30 + version: 5.33 Catalyst::Base: file: lib/Catalyst/Base.pm Catalyst::Build: diff --git a/README b/README index 7ebe2a2..58c0b27 100644 --- a/README +++ b/README @@ -139,16 +139,54 @@ SEE ALSO Catalyst::Response - The Response Object Catalyst::Test - The test suite. +CREDITS + Andy Grundman + + Andrew Ford + + Andrew Ruthven + + Autrijus Tang + + Christian Hansen + + Christopher Hicks + + Dan Sully + + Danijel Milicevic + + David Naughton + + Gary Ashton Jones + + Geoff Richards + + Jesse Sheidlower + + Jody Belka + + Johan Lindstrom + + Juan Camacho + + Leon Brocard + + Marcus Ramberg + + Matt S Trout + + Robert Sedlacek + + Sebastian Riedel + + Tatsuhiko Miyagawa + + Ulf Edvinsson + AUTHOR Sebastian Riedel, "sri@oook.de" -THANK YOU - Andy Grundman, Andrew Ford, Andrew Ruthven, Autrijus Tang, Christian - Hansen, Christopher Hicks, Dan Sully, Danijel Milicevic, David Naughton, - Gary Ashton Jones, Geoff Richards, Jesse Sheidlower, Jody Belka, Johan - Lindstrom, Juan Camacho, Leon Brocard, Marcus Ramberg, Tatsuhiko - Miyagawa and all the others who've helped. - LICENSE This library is free software . You can redistribute it and/or modify it under the same terms as perl itself. diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index c6980a1..1b731a5 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -13,7 +13,7 @@ our $CATALYST_SCRIPT_GEN = 4; __PACKAGE__->mk_classdata($_) for qw/arguments dispatcher engine log/; -our $VERSION = '5.31'; +our $VERSION = '5.33'; our @ISA; =head1 NAME