diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-10-26 21:50:55 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-10-26 22:38:26 +0100 |
commit | 293dcbbbfd30a0f0282734d71ac98c53abfd07ec (patch) | |
tree | 9158ab37550e4e45880231d2bf3f893b4ac11e38 | |
parent | bc70704df66bb0d8704c3379a6b41e4f5da79318 (diff) | |
download | perl-293dcbbbfd30a0f0282734d71ac98c53abfd07ec.tar.gz |
Update HTTP-Tiny to CPAN version 0.015
[DELTA]
0.015 2011-10-26 16:42:26 America/New_York
[BUG FIXES]
- Make sure PERL_UNICODE doesn't affect PUT test data [Tony Cook]
[DOCUMENTATION]
- Fixed typo
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/HTTP-Tiny/lib/HTTP/Tiny.pm | 6 | ||||
-rw-r--r-- | cpan/HTTP-Tiny/t/150_post_form.t | 1 | ||||
-rw-r--r-- | pod/perldelta.pod | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 6029aa0679..f2a3724aa7 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -978,7 +978,7 @@ use File::Glob qw(:case); 'HTTP::Tiny' => { 'MAINTAINER' => 'dagolden', - 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.014.tar.gz', + 'DISTRIBUTION' => 'DAGOLDEN/HTTP-Tiny-0.015.tar.gz', 'FILES' => q[cpan/HTTP-Tiny], 'EXCLUDED' => [ 't/200_live.t', diff --git a/cpan/HTTP-Tiny/lib/HTTP/Tiny.pm b/cpan/HTTP-Tiny/lib/HTTP/Tiny.pm index 922532f6f6..f0ed572451 100644 --- a/cpan/HTTP-Tiny/lib/HTTP/Tiny.pm +++ b/cpan/HTTP-Tiny/lib/HTTP/Tiny.pm @@ -3,7 +3,7 @@ package HTTP::Tiny; use strict; use warnings; # ABSTRACT: A small, simple, correct HTTP/1.1 client -our $VERSION = '0.014'; # VERSION +our $VERSION = '0.015'; # VERSION use Carp (); @@ -832,7 +832,7 @@ HTTP::Tiny - A small, simple, correct HTTP/1.1 client =head1 VERSION -version 0.014 +version 0.015 =head1 SYNOPSIS @@ -1107,7 +1107,7 @@ mandated by the specification. There is no automatic support for status 305 =item * -Persistant connections are not supported. The C<Connection> header will +Persistent connections are not supported. The C<Connection> header will always be set to C<close>. =item * diff --git a/cpan/HTTP-Tiny/t/150_post_form.t b/cpan/HTTP-Tiny/t/150_post_form.t index a0edcd4371..f9fbd17bbe 100644 --- a/cpan/HTTP-Tiny/t/150_post_form.t +++ b/cpan/HTTP-Tiny/t/150_post_form.t @@ -2,6 +2,7 @@ use strict; use warnings; +use open IN => ':raw'; use File::Basename; use Test::More 0.88; diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 78f6b1061e..8f6a0e99cf 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -104,7 +104,7 @@ L<ExtUtils::MakeMaker> has been upgraded from version 6.61_01 to version 6.63_01 =item * -L<HTTP::Tiny> has been upgraded from version 0.013 to version 0.014. +L<HTTP::Tiny> has been upgraded from version 0.013 to version 0.015. Adds additional shorthand methods for all common HTTP verbs, a C<post_form()> method for POST-ing x-www-form-urlencoded data and |