Subject: | Build problems with 0.03 |
The 0.03 dist wasn't properly made on cpan and results in the following files not being part of the dist:
lib/Plack/App/FakeApache/Connection.pm
lib/Plack/App/FakeApache/Log.pm
lib/Plack/App/FakeApache/Server.pm
That's obviously bad, so here's a patch for a 0.04 release
Subject: | 0.04_fixes.diff |
diff --git a/Changes b/Changes
index 33f8b05..47745fd 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,21 @@
Changes for Plack::App::FakeApache
+0.04 - Fix README in release and add files missing from 0.03 CPAN Dist
+ (forgot ./Build manifest)
+
+0.03 - Thu Jun 20 15:04:21 CEST 2013
+ * Multiple enhancements from Lasse Makholm
+ - Support for Authen and Authz handlers
+ - Stacked handlers
+ - Server object
+ - New methods: auth_type, auth_name, is_initial_req, construct_uri
+ - Improved methods: args, uri
+ - ... and multiple typos and other minor fixes
+ * Multiple enhacements from Mark Fowler
+ - Connection object
+ - Tie STDOUT so prints in response handler are passed to client
+ - New methods: filename, document_root, args
+
0.02 - Mon Aug 15 11:38:33 CEST 2011
* Rename module to a saner name
* Support for err_headers_out() and set_content_length
diff --git a/MANIFEST b/MANIFEST
index 97615ec..52f46d6 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4,7 +4,14 @@ examples/generic.psgi
examples/simple.psgi
examples/wrapwrap.psgi
lib/Plack/App/FakeApache.pm
+lib/Plack/App/FakeApache/Connection.pm
+lib/Plack/App/FakeApache/Log.pm
lib/Plack/App/FakeApache/Request.pm
+lib/Plack/App/FakeApache/Server.pm
lib/Plack/App/WrapApacheReq.pm
MANIFEST This list of files
+META.json
META.yml
+README
+t/00-require.t
+t/01-simple.t
diff --git a/lib/Plack/App/FakeApache.pm b/lib/Plack/App/FakeApache.pm
index 2a3c62d..235193a 100644
--- a/lib/Plack/App/FakeApache.pm
+++ b/lib/Plack/App/FakeApache.pm
@@ -13,7 +13,7 @@ use Carp;
use Scalar::Util qw( blessed );
use Apache2::Const qw(OK DECLINED HTTP_OK HTTP_UNAUTHORIZED HTTP_NOT_FOUND);
-our $VERSION = 0.02;
+our $VERSION = 0.04;
sub _get_phase_handlers
{