Updated HTTP::Body for PAR
Sebastian Riedel [Thu, 17 Nov 2005 03:57:06 +0000 (03:57 +0000)]
Changes
lib/HTTP/Body.pm

diff --git a/Changes b/Changes
index 83937dd..79c1422 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 This file documents the revision history for Perl extension HTTP::Body.
 
+0.5   2005-11-17 00:00:00
+        - Updated for PAR compatibility
+
 0.4   2005-11-09 01:00:00
         - Version bump to 0.4 so CPAN.pm installs the right version.
 
index 83b4c87..792dcda 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 
 use Carp       qw[ ];
 
-our $VERSION = '0.4';
+our $VERSION = '0.5';
 
 our $TYPES = {
     'application/octet-stream'          => 'HTTP::Body::OctetStream',
@@ -12,6 +12,10 @@ our $TYPES = {
     'multipart/form-data'               => 'HTTP::Body::MultiPart'
 };
 
+require HTTP::Body::OctetStream;
+require HTTP::Body::UrlEncoded;
+require HTTP::Body::MultiPart;
+
 =head1 NAME
 
 HTTP::Body - HTTP Body Parser