[Catalyst-commits] r11882 - in Catalyst-Engine-Embeddable/trunk: . lib/Catalyst/Engine

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Wed Nov 18 01:31:00 GMT 2009


Author: t0m
Date: 2009-11-18 01:31:00 +0000 (Wed, 18 Nov 2009)
New Revision: 11882

Modified:
   Catalyst-Engine-Embeddable/trunk/Changes
   Catalyst-Engine-Embeddable/trunk/Makefile.PL
   Catalyst-Engine-Embeddable/trunk/lib/Catalyst/Engine/Embeddable.pm
Log:
Version and changelog

Modified: Catalyst-Engine-Embeddable/trunk/Changes
===================================================================
--- Catalyst-Engine-Embeddable/trunk/Changes	2009-11-18 01:27:42 UTC (rev 11881)
+++ Catalyst-Engine-Embeddable/trunk/Changes	2009-11-18 01:31:00 UTC (rev 11882)
@@ -1,3 +1,8 @@
+0.000003 2009-11-18 Tomas Doran
+    - Patch by email from mike to add tests
+      and add the ability to get the $c->error
+      stack out of an embeddable engine.
+
 0.000002 2009-05-22 Tomas Doran
 
     - Reduce perl dependency to 5.8.6

Modified: Catalyst-Engine-Embeddable/trunk/Makefile.PL
===================================================================
--- Catalyst-Engine-Embeddable/trunk/Makefile.PL	2009-11-18 01:27:42 UTC (rev 11881)
+++ Catalyst-Engine-Embeddable/trunk/Makefile.PL	2009-11-18 01:31:00 UTC (rev 11882)
@@ -1,10 +1,10 @@
 use 5.008006;
-use inc::Module::Install 0.78;
+use inc::Module::Install 0.91;
 name 'Catalyst-Engine-Embeddable';
 all_from 'lib/Catalyst/Engine/Embeddable.pm';
 
 requires 'Catalyst::Runtime' => '5.80004';
-
+requires 'Moose';
 requires 'namespace::autoclean' => '0';
 requires 'URI' => '0';
 requires 'HTTP::Response' => '0';

Modified: Catalyst-Engine-Embeddable/trunk/lib/Catalyst/Engine/Embeddable.pm
===================================================================
--- Catalyst-Engine-Embeddable/trunk/lib/Catalyst/Engine/Embeddable.pm	2009-11-18 01:27:42 UTC (rev 11881)
+++ Catalyst-Engine-Embeddable/trunk/lib/Catalyst/Engine/Embeddable.pm	2009-11-18 01:31:00 UTC (rev 11882)
@@ -7,7 +7,7 @@
 
 extends 'Catalyst::Engine';
 
-our $VERSION = '0.000002';
+our $VERSION = '0.000003';
 
 sub prepare_request {
     my ($self, $c, $req, $res_ref, $err_ref) = @_;




More information about the Catalyst-commits mailing list