r16040 - in /trunk/libhttp-body-perl: Changes META.yml debian/changelog lib/HTTP/Body.pm t/05urlencoded.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Mar 1 19:34:34 UTC 2008


Author: gregoa-guest
Date: Sat Mar  1 19:34:33 2008
New Revision: 16040

URL: http://svn.debian.org/wsvn/?sc=1&rev=16040
Log:
New upstream release.

Modified:
    trunk/libhttp-body-perl/Changes
    trunk/libhttp-body-perl/META.yml
    trunk/libhttp-body-perl/debian/changelog
    trunk/libhttp-body-perl/lib/HTTP/Body.pm
    trunk/libhttp-body-perl/t/05urlencoded.t

Modified: trunk/libhttp-body-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libhttp-body-perl/Changes?rev=16040&op=diff
==============================================================================
--- trunk/libhttp-body-perl/Changes (original)
+++ trunk/libhttp-body-perl/Changes Sat Mar  1 19:34:33 2008
@@ -1,4 +1,7 @@
 This file documents the revision history for Perl extension HTTP::Body.
+
+1.02    2008-02-27 17:30:00
+        - Fixed issue with urlencoded test on Windows.
 
 1.01    2008-02-23 11:30:00
         - Fixed performance issue with urlencoded regex.

Modified: trunk/libhttp-body-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libhttp-body-perl/META.yml?rev=16040&op=diff
==============================================================================
--- trunk/libhttp-body-perl/META.yml (original)
+++ trunk/libhttp-body-perl/META.yml Sat Mar  1 19:34:33 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         HTTP-Body
-version:      1.01
+version:      1.02
 version_from: lib/HTTP/Body.pm
 installdirs:  site
 requires:

Modified: trunk/libhttp-body-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libhttp-body-perl/debian/changelog?rev=16040&op=diff
==============================================================================
--- trunk/libhttp-body-perl/debian/changelog (original)
+++ trunk/libhttp-body-perl/debian/changelog Sat Mar  1 19:34:33 2008
@@ -1,3 +1,9 @@
+libhttp-body-perl (1.02-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 01 Mar 2008 20:34:03 +0100
+
 libhttp-body-perl (1.01-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libhttp-body-perl/lib/HTTP/Body.pm
URL: http://svn.debian.org/wsvn/trunk/libhttp-body-perl/lib/HTTP/Body.pm?rev=16040&op=diff
==============================================================================
--- trunk/libhttp-body-perl/lib/HTTP/Body.pm (original)
+++ trunk/libhttp-body-perl/lib/HTTP/Body.pm Sat Mar  1 19:34:33 2008
@@ -4,7 +4,7 @@
 
 use Carp       qw[ ];
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 our $TYPES = {
     'application/octet-stream'          => 'HTTP::Body::OctetStream',

Modified: trunk/libhttp-body-perl/t/05urlencoded.t
URL: http://svn.debian.org/wsvn/trunk/libhttp-body-perl/t/05urlencoded.t?rev=16040&op=diff
==============================================================================
--- trunk/libhttp-body-perl/t/05urlencoded.t (original)
+++ trunk/libhttp-body-perl/t/05urlencoded.t Sat Mar  1 19:34:33 2008
@@ -37,6 +37,7 @@
     # Check trailing header on the chunked request
     if ( $i == 3 ) {
         my $content = IO::File->new( catfile( $path, "002-content.dat" ) );
+        binmode $content;
         $content->read( my $buf, 4096 );
         is( $body->trailing_headers->header('Content-MD5'), md5_hex($buf), "$test trailing header ok" );
     }




More information about the Pkg-perl-cvs-commits mailing list