summaryrefslogtreecommitdiff
path: root/cpan/HTTP-Tiny
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-10-26 21:50:55 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-10-26 22:38:26 +0100
commit293dcbbbfd30a0f0282734d71ac98c53abfd07ec (patch)
tree9158ab37550e4e45880231d2bf3f893b4ac11e38 /cpan/HTTP-Tiny
parentbc70704df66bb0d8704c3379a6b41e4f5da79318 (diff)
downloadperl-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
Diffstat (limited to 'cpan/HTTP-Tiny')
-rw-r--r--cpan/HTTP-Tiny/lib/HTTP/Tiny.pm6
-rw-r--r--cpan/HTTP-Tiny/t/150_post_form.t1
2 files changed, 4 insertions, 3 deletions
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;