Update HTTP-Tiny to CPAN version 0.015
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Wed, 26 Oct 2011 20:50:55 +0000 (21:50 +0100)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Wed, 26 Oct 2011 21:38:26 +0000 (22:38 +0100)
  [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

Porting/Maintainers.pl
cpan/HTTP-Tiny/lib/HTTP/Tiny.pm
cpan/HTTP-Tiny/t/150_post_form.t
pod/perldelta.pod

index 6029aa0..f2a3724 100755 (executable)
@@ -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',
index 922532f..f0ed572 100644 (file)
@@ -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 *
index a0edcd4..f9fbd17 100644 (file)
@@ -2,6 +2,7 @@
 
 use strict;
 use warnings;
+use open IN => ':raw';
 
 use File::Basename;
 use Test::More 0.88;
index 78f6b10..8f6a0e9 100644 (file)
@@ -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